-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow GithubStream to continue on specific errors #16
Comments
Linked issue on the SDK - Error Handling - https://gitlab.com/meltano/sdk/-/issues/134 |
@ericboucher - For the SDK generic handling, I'm thinking a multi-facet approach along these lines:
@ericboucher - What do you think of this approach? It should give you less you would need to override in cases such as these. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As I was implementing a GithubStream for
community_profile
, I stumbled upon the following issue:Some repos actually return a 404 when we request their
community_profile
. It is quite lucky that this got caught early thanks to the main test repo being one of these edge-cases. Though I still do not understand why.As a workaround, we could allow
tolerated_http_errors
and handle them differently. This is what I have implemented here. But I am open to other ideas 😄Open question:
The text was updated successfully, but these errors were encountered: