From 0e80123615cd4bf54aac5e7f7b3e82a6b7d8a6d2 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Tue, 29 May 2018 16:25:10 -0400 Subject: [PATCH] use 12 minutes instead of 15 as delay in contact_is_good --- lbrynet/dht/contact.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbrynet/dht/contact.py b/lbrynet/dht/contact.py index d7bbb443b..736dfa476 100644 --- a/lbrynet/dht/contact.py +++ b/lbrynet/dht/contact.py @@ -68,7 +68,7 @@ class _Contact(object): """ failures = self.failures now = self.getTime() - delay = constants.refreshTimeout / 4 + delay = constants.checkRefreshInterval if failures: if self.lastReplied and len(failures) >= 2 and self.lastReplied < failures[-2]: