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
range
time.Ticker
Done()
sync.WaitGroup
Close()
Stop()
Wait()
The text was updated successfully, but these errors were encountered:
Note: this can also cause requests to update Kafka configs to hang, because certain config updates call Close() on every existing writer.
Sorry, something went wrong.
danxmoran
Successfully merging a pull request may close this issue.
range
s over atime.Ticker
's channel, and callsDone()
on async.WaitGroup
after therange
completes.Close()
on the writer callsStop()
on the ticker, thenWait()
on the wait groupStop()
on a ticker doesn't actually close its channel, so:range
over the channel never completesDone()
is never called on the wait groupWait()
on the wait group never completesThe text was updated successfully, but these errors were encountered: