-
Notifications
You must be signed in to change notification settings - Fork 258
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
Bugfix: Event publisher not starting for second run Recorder::Record() after Stop() #1888
Bugfix: Event publisher not starting for second run Recorder::Record() after Stop() #1888
Conversation
Signed-off-by: Michael Orlov <[email protected]>
6ba853b
to
de9782f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm with green CI
Pulls: #1888 |
https://github.com/Mergifyio backport jazzy |
✅ Backports have been created
|
Signed-off-by: Michael Orlov <[email protected]> (cherry picked from commit ffd8c7d)
#1890) Signed-off-by: Michael Orlov <[email protected]> (cherry picked from commit ffd8c7d) Co-authored-by: Michael Orlov <[email protected]>
…1888) Signed-off-by: Michael Orlov <[email protected]>
This PR fixes a bug when the event publisher thread, which is responsible for publishing
on_bag_split_event
events, doesn't start when callingRecorder::Record()
after a previous call toRecorder::Stop()
.RCA: The event publisher thread was starting and exiting immediately because
event_publisher_thread_should_exit_
was not initialized to false after calling theRecorder::Stop()
API.