This commit is contained in:
ed 2024-08-19 00:14:44 +00:00
parent 8d8b88c4fd
commit 70009cd984
2 changed files with 4 additions and 3 deletions

View file

@ -1,8 +1,8 @@
# coding: utf-8
VERSION = (1, 14, 0)
VERSION = (1, 14, 1)
CODENAME = "one step forward"
BUILD_DT = (2024, 8, 18)
BUILD_DT = (2024, 8, 19)
S_VERSION = ".".join(map(str, VERSION))
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)

View file

@ -460,7 +460,8 @@ class Up2k(object):
# important; not deferred by db_act
timeout = self._check_lifetimes()
try:
timeout = min(self._check_shares(), timeout)
if self.args.shr:
timeout = min(self._check_shares(), timeout)
except Exception as ex:
t = "could not check for expiring shares: %r"
self.log(t % (ex,), 1)