limit bulk uploading to 5 heartbeats per request

This commit is contained in:
Alan Hamlett 2017-11-15 18:31:19 -08:00
parent 0b633f3443
commit b80e55d4e3
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ class Queue(object):
def pop_many(self, limit=None):
if limit is None:
limit = 100
limit = 5
heartbeats = []