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
getting this error thrown... except I only have a maximum of 3 waiters
This is how I dequeue - is there a problem with timing out and rechecking? Does that leak something?
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second) defer cancel() queuedElement, err := scoutQueue.DequeueOrWaitForNextElementContext(ctx) if err != nil { if err != context.DeadlineExceeded { log.Infof("SCOUT: Unexpected queue error: %s", err) } return nil }
The text was updated successfully, but these errors were encountered:
Hi @jfberry,
Could you please provide an example (golang playground) producing this error?
Sorry, something went wrong.
No branches or pull requests
getting this error thrown... except I only have a maximum of 3 waiters
This is how I dequeue - is there a problem with timing out and rechecking? Does that leak something?
The text was updated successfully, but these errors were encountered: