We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The check here can be written differently, where if we can't immediately push the event onto the channel, we know the queue is full: https://github.com/xmidt-org/caduceus/blob/master/outboundSender.go#L418
Here is an example of how this can be written in a more idiomatic way: https://gobyexample.com/non-blocking-channel-operations
This was originally brought up by @joe94 .
The text was updated successfully, but these errors were encountered:
gargidb
Successfully merging a pull request may close this issue.
The check here can be written differently, where if we can't immediately push the event onto the channel, we know the queue is full:
https://github.com/xmidt-org/caduceus/blob/master/outboundSender.go#L418
Here is an example of how this can be written in a more idiomatic way:
https://gobyexample.com/non-blocking-channel-operations
This was originally brought up by @joe94 .
The text was updated successfully, but these errors were encountered: