Change default subscribe update interval to 60 seconds (#209)

This commit is contained in:
Jonathan Zernik 2020-08-02 03:45:18 -07:00 committed by GitHub
parent 62f6c20b0f
commit 6ed3ad7d2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,7 +5,7 @@ import threading
logger = logging.getLogger(__name__)
SUBSCRIBE_UPDATE_INTERVAL_S = 10.0
SUBSCRIBE_UPDATE_INTERVAL_S = 60.0
class SqueakSubscriptionDownloader: