File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ def submit(self, ticket: Ticket) -> int:
223
223
# primary rate limits which can be queried via the API. Manual testing
224
224
# indicates that ~2s isn't always sufficient, so err on the side of a
225
225
# larger gap for better reliability.
226
- time .sleep (5 )
226
+ time .sleep (10 )
227
227
228
228
# We also want to wait and retry when GitHub then additionally rate
229
229
# limit us anyway...
@@ -233,7 +233,7 @@ def retry_on_exception(exception: Exception) -> bool:
233
233
234
234
@retrying .retry (
235
235
retry_on_exception = retry_on_exception ,
236
- wait_fixed = 20_000 ,
236
+ wait_fixed = 60_000 ,
237
237
)
238
238
def create_issue () -> github .Issue .Issue :
239
239
RATE_LIMIT_MESSAGE = "exceeded a secondary rate limit and have been temporarily blocked" # noqa:E501
You can’t perform that action at this time.
0 commit comments