Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In line 7121, time.sleep(delay_in_seconds) requires an integer. The first pass works fine, however, in line 7123, delay_in_seconds is set to result.retry_after, which sometimes returns NoneType and causes time.sleep(delay_in_seconds) to fail. By modifying line 7124 to look for 0 or None, it will properly set delay_in_seconds to the integer required.
- Loading branch information