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:
223223 # primary rate limits which can be queried via the API. Manual testing
224224 # indicates that ~2s isn't always sufficient, so err on the side of a
225225 # larger gap for better reliability.
226- time .sleep (5 )
226+ time .sleep (10 )
227227
228228 # We also want to wait and retry when GitHub then additionally rate
229229 # limit us anyway...
@@ -233,7 +233,7 @@ def retry_on_exception(exception: Exception) -> bool:
233233
234234 @retrying .retry (
235235 retry_on_exception = retry_on_exception ,
236- wait_fixed = 20_000 ,
236+ wait_fixed = 60_000 ,
237237 )
238238 def create_issue () -> github .Issue .Issue :
239239 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