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
f"Something went wrong while fetching the repository. Exception: {exception}",
exc_info=True,
)
This error should probably be re-raised if it's not something that can be re-tried. If the github connector cannot sync any issues at all, the sync should fail. If it's just a single issue or two, that's probably ok for a WARN message.
Acceptance Criteria
github connector fails syncs if no issues can be synced
github connector attempts retries for errors that look transient
errors with limited scope (single documents, or edge cases) can be moved past with sufficient WARN logging
The text was updated successfully, but these errors were encountered:
@DianaJourdan As we discussed in the meeting, please take a note.
NOTE: We are blocked for this issue as we are waiting for approach finalization in the similar issue - #2394
Once the finalized approach is completely implemented in that issue will prioritize this issue and work on it.
part of #2393
Description
The github connector is currently just logging a warning instead of propagating an error, if something goes wrong while fetching issues. See:
connectors/connectors/sources/github.py
Lines 1373 to 1377 in 8c8d4a3
This error should probably be re-raised if it's not something that can be re-tried. If the github connector cannot sync any issues at all, the sync should fail. If it's just a single issue or two, that's probably ok for a WARN message.
Acceptance Criteria
The text was updated successfully, but these errors were encountered: