From b96559b76f63d13d25b3dad47f65c029e71b0d39 Mon Sep 17 00:00:00 2001 From: shortcutme Date: Wed, 29 Aug 2018 19:55:04 +0200 Subject: [PATCH] Reduce connection requirements on startup --- src/File/FileServer.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/File/FileServer.py b/src/File/FileServer.py index a0b27c31..7e6bf1ef 100644 --- a/src/File/FileServer.py +++ b/src/File/FileServer.py @@ -257,8 +257,6 @@ class FileServer(ConnectionServer): site.update(check_files=check_files) # Update site's content.json and download changed files site.sendMyHashfield() site.updateHashfield() - if len(site.peers) > 5: # Keep active connections if site having 5 or more peers - site.needConnections() # Check sites integrity @util.Noparallel()