This commit is contained in:
ed 2021-07-04 16:44:29 +02:00
parent 51546c9e64
commit 456f575637
3 changed files with 3 additions and 6 deletions

View file

@ -622,8 +622,6 @@ in the `scripts` folder:
roughly sorted by priority roughly sorted by priority
* keepalive handshake after 5h
* skip pushing postlist if todo.upload has entries
* readme.md as epilogue * readme.md as epilogue
* reduce up2k roundtrips * reduce up2k roundtrips
* start from a chunk index and just go * start from a chunk index and just go

View file

@ -1,8 +1,8 @@
# coding: utf-8 # coding: utf-8
VERSION = (0, 11, 30) VERSION = (0, 11, 31)
CODENAME = "the grid" CODENAME = "the grid"
BUILD_DT = (2021, 7, 1) BUILD_DT = (2021, 7, 4)
S_VERSION = ".".join(map(str, VERSION)) S_VERSION = ".".join(map(str, VERSION))
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT) S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)

View file

@ -934,8 +934,7 @@ function up2k_init(subtle) {
nprev = nf; nprev = nf;
var t = st.files[nf]; var t = st.files[nf];
if (t.t_busied && if (now - t.t_busied > 1000 * 30 &&
now - t.t_busied > 1000 * 30 &&
now - t.t_handshake > 1000 * (21600 - 1800) now - t.t_handshake > 1000 * (21600 - 1800)
) { ) {
apop(st.todo.handshake, t); apop(st.todo.handshake, t);