+ settings.github.ratelimit_retries setup in configuration.toml

This commit is contained in:
idavidov
2023-07-25 16:37:13 +03:00
parent f6036e936e
commit 1229fba346
3 changed files with 33 additions and 23 deletions

View File

@ -136,3 +136,8 @@ class IncrementalPR:
self.commits_range = None
self.first_new_commit_sha = None
self.last_seen_commit_sha = None
class RateLimitExceeded(Exception):
"""Raised when the git provider API rate limit has been exceeded."""
pass