Fix a typo in FileServer
This commit is contained in:
parent
90d01e6004
commit
27ce79f044
1 changed files with 1 additions and 1 deletions
|
@ -492,7 +492,7 @@ class FileServer(ConnectionServer):
|
||||||
continue
|
continue
|
||||||
if last_activity_time > now - threshold:
|
if last_activity_time > now - threshold:
|
||||||
continue
|
continue
|
||||||
if len(self.update_pool) == 0:
|
if len(self.update_pool) != 0:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
log.info("No network activity for %.2fs. Running an update for a random site.",
|
log.info("No network activity for %.2fs. Running an update for a random site.",
|
||||||
|
|
Loading…
Reference in a new issue