Less sleep in inbox queue

main
Bob Mottram 2020-04-16 19:25:59 +01:00
parent ec519746e3
commit f3723d4707
2 changed files with 3 additions and 3 deletions

View File

@ -7144,7 +7144,7 @@ def runDaemon(blogsInstance: bool, mediaInstance: bool,
httpd.inboxQueue = []
httpd.sendThreads = sendThreads
httpd.postLog = []
httpd.maxQueueLength = 256
httpd.maxQueueLength = 64
httpd.ocapAlways = ocapAlways
httpd.allowDeletion = allowDeletion
httpd.lastLoginTime = 0

View File

@ -2233,7 +2233,7 @@ def runInboxQueue(recentPostsCache: {}, maxRecentPosts: int,
queueRestoreCtr = 0
while True:
time.sleep(5)
time.sleep(1)
# heartbeat to monitor whether the inbox queue is running
heartBeatCtr += 5
@ -2423,7 +2423,7 @@ def runInboxQueue(recentPostsCache: {}, maxRecentPosts: int,
if debug:
print('DEBUG: Retry ' + str(tries+1) +
' obtaining public key for ' + keyId)
time.sleep(5)
time.sleep(1)
if not pubKey:
print('Queue: public key could not be obtained from ' + keyId)