main
Bob Mottram 2020-03-25 10:55:47 +00:00
parent 305e45ea91
commit 4e2e1dab21
1 changed files with 16 additions and 20 deletions

View File

@ -2126,11 +2126,10 @@ def runInboxQueue(recentPostsCache: {},maxRecentPosts: int, \
if quotasDaily['domains'][postDomain]>domainMaxPostsPerDay: if quotasDaily['domains'][postDomain]>domainMaxPostsPerDay:
print('DEBUG: Quota per day - Maximum posts for '+postDomain+' reached ('+str(domainMaxPostsPerDay)+')') print('DEBUG: Quota per day - Maximum posts for '+postDomain+' reached ('+str(domainMaxPostsPerDay)+')')
if len(queue)>0: if len(queue)>0:
if os.path.isfile(queueFilename): try:
try: os.remove(queueFilename)
os.remove(queueFilename) except:
except: pass
pass
queue.pop(0) queue.pop(0)
continue continue
quotasDaily['domains'][postDomain]+=1 quotasDaily['domains'][postDomain]+=1
@ -2142,11 +2141,10 @@ def runInboxQueue(recentPostsCache: {},maxRecentPosts: int, \
if quotasPerMin['domains'][postDomain]>domainMaxPostsPerMin: if quotasPerMin['domains'][postDomain]>domainMaxPostsPerMin:
print('DEBUG: Quota per min - Maximum posts for '+postDomain+' reached ('+str(domainMaxPostsPerMin)+')') print('DEBUG: Quota per min - Maximum posts for '+postDomain+' reached ('+str(domainMaxPostsPerMin)+')')
if len(queue)>0: if len(queue)>0:
if os.path.isfile(queueFilename): try:
try: os.remove(queueFilename)
os.remove(queueFilename) except:
except: pass
pass
queue.pop(0) queue.pop(0)
continue continue
quotasPerMin['domains'][postDomain]+=1 quotasPerMin['domains'][postDomain]+=1
@ -2159,11 +2157,10 @@ def runInboxQueue(recentPostsCache: {},maxRecentPosts: int, \
if quotasDaily['accounts'][postHandle]>accountMaxPostsPerDay: if quotasDaily['accounts'][postHandle]>accountMaxPostsPerDay:
print('DEBUG: Quota account posts per day - Maximum posts for '+postHandle+' reached ('+str(accountMaxPostsPerDay)+')') print('DEBUG: Quota account posts per day - Maximum posts for '+postHandle+' reached ('+str(accountMaxPostsPerDay)+')')
if len(queue)>0: if len(queue)>0:
if os.path.isfile(queueFilename): try:
try: os.remove(queueFilename)
os.remove(queueFilename) except:
except: pass
pass
queue.pop(0) queue.pop(0)
continue continue
quotasDaily['accounts'][postHandle]+=1 quotasDaily['accounts'][postHandle]+=1
@ -2175,11 +2172,10 @@ def runInboxQueue(recentPostsCache: {},maxRecentPosts: int, \
if quotasPerMin['accounts'][postHandle]>accountMaxPostsPerMin: if quotasPerMin['accounts'][postHandle]>accountMaxPostsPerMin:
print('DEBUG: Quota account posts per min - Maximum posts for '+postHandle+' reached ('+str(accountMaxPostsPerMin)+')') print('DEBUG: Quota account posts per min - Maximum posts for '+postHandle+' reached ('+str(accountMaxPostsPerMin)+')')
if len(queue)>0: if len(queue)>0:
if os.path.isfile(queueFilename): try:
try: os.remove(queueFilename)
os.remove(queueFilename) except:
except: pass
pass
queue.pop(0) queue.pop(0)
continue continue
quotasPerMin['accounts'][postHandle]+=1 quotasPerMin['accounts'][postHandle]+=1