You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When Kodiak starts merging a PR, it enters a loop, polling until the PR is ready to merge. If Kodiak makes a GitHub API request and encounters an error, it will eject from this loop, ignoring the PR and moving on to the next PR in queue.
This is problematic behavior as it can trigger extra updates to PRs. We should gracefully retry on recoverable errors.
When Kodiak starts merging a PR, it enters a loop, polling until the PR is ready to merge. If Kodiak makes a GitHub API request and encounters an error, it will eject from this loop, ignoring the PR and moving on to the next PR in queue.
This is problematic behavior as it can trigger extra updates to PRs. We should gracefully retry on recoverable errors.
Here's where we check for an error:
kodiak/bot/kodiak/queries/__init__.py
Lines 876 to 880 in afd6e59
We should audit all of our API requests to ensure we gracefully handle errors.
The text was updated successfully, but these errors were encountered: