mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 09:21:39 +00:00
restore minimum lag for server swiching
This commit is contained in:
parent
c18a49b8fe
commit
e462ef48cd
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ class Blockchain(threading.Thread):
|
|||
self.network.trigger_callback('updated')
|
||||
|
||||
h = self.servers_height.get(self.network.interface.server)
|
||||
if h is not None and h < height :
|
||||
if h is not None and h < height - 1:
|
||||
print_error( "Server is lagging", height, h)
|
||||
if self.config.get('auto_cycle'):
|
||||
self.network.set_server(i.server)
|
||||
|
|
Loading…
Add table
Reference in a new issue