-
Notifications
You must be signed in to change notification settings - Fork 749
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
Connect Retry Swallows Error Messages #1166
Comments
whynowy
added a commit
to whynowy/argo-events
that referenced
this issue
Apr 7, 2021
Signed-off-by: Derek Wang <[email protected]>
1 task
whynowy
added a commit
that referenced
this issue
Apr 7, 2021
Signed-off-by: Derek Wang <[email protected]>
whynowy
added a commit
that referenced
this issue
Apr 8, 2021
Signed-off-by: Derek Wang <[email protected]>
juliev0
pushed a commit
to juliev0/argo-events
that referenced
this issue
Mar 29, 2022
…goproj#1167) Signed-off-by: Derek Wang <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If an eventsource fails to connect, it will retry and ultimately fail without actually logging why the connection failed.
For example, we were trying to connect to GCP PubSub using JSON formatted service-account credentials. It turned out that we had somehow messed up the JSON formatting, and so the credentials were not able to be digested. If more fine-grained logging of error messages was enabled in the
Connect
function, we likely would have seen this error and fixed it much faster. Instead, our logs offered little helpful information (even withDEBUG_LOG:true
:Eventsource Pod Logs
Initial discussion in argo-events slack:
https://argoproj.slack.com/archives/CAM37QYMS/p1617829466178400
Code of Interest:
argo-events/common/retry.go
Line 74 in 82068ec
The text was updated successfully, but these errors were encountered: