This commit is contained in:
ed
2025-08-01 20:56:27 +00:00
parent 09910ba807
commit ca22cd8853
3 changed files with 81 additions and 3 deletions

View File

@@ -1,8 +1,8 @@
# coding: utf-8
VERSION = (1, 18, 8)
VERSION = (1, 18, 9)
CODENAME = "logtail"
BUILD_DT = (2025, 7, 31)
BUILD_DT = (2025, 8, 1)
S_VERSION = ".".join(map(str, VERSION))
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)

View File

@@ -402,7 +402,7 @@ class Up2k(object):
def get_unfinished_by_user(self, uname, ip) -> dict[str, Any]:
# returns dict due to ExceptionalQueue
if PY2 or not self.reg_mutex.acquire(timeout=2):
return {"timeout":1}
return {"timeout": 1}
ret: list[tuple[int, str, int, int, int]] = []
userset = set([(uname or "\n"), "*"])