Browse Source

Fixed ExponentialBackoff not working when integral

pull/702/merge
Matt Gardner 8 years ago
committed by Rapptz
parent
commit
f490afa5dc
  1. 2
      discord/backoff.py

2
discord/backoff.py

@ -61,7 +61,7 @@ class ExponentialBackoff:
rand = random.Random()
rand.seed()
self._randfunc = rand.rand_range if integral else rand.uniform
self._randfunc = rand.randrange if integral else rand.uniform
def delay(self):
"""Compute the next delay

Loading…
Cancel
Save