-
Notifications
You must be signed in to change notification settings - Fork 805
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
Fix replication metric emitter shutdown #6117
Fix replication metric emitter shutdown #6117
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files
... and 8 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
Pull Request Test Coverage Report for Build 018feaa2-8fc3-4a42-84aa-10bd2ac726eeDetails
💛 - Coveralls |
What changed?
MetricEmitterImpl was not waiting for underlying goroutine to finish before returning on
Stop()
.Why?
Stop
s should not leave goroutines behind.