limit bulk uploading to 5 heartbeats per request
This commit is contained in:
parent
0b633f3443
commit
b80e55d4e3
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ class Queue(object):
|
|||
|
||||
def pop_many(self, limit=None):
|
||||
if limit is None:
|
||||
limit = 100
|
||||
limit = 5
|
||||
|
||||
heartbeats = []
|
||||
|
||||
|
|
Loading…
Reference in a new issue