forked from scylladb/scylla-cluster-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(backtrace_decoding): make sure event are published
Events from the thread processing the queue weren't published and backtraces weren't reported as events. * `task_done()` isn't on multiprocessing.Queue, but on `queues.Quere` we move to use multiprocessing since the thread reading the log moved into it's own process * events clone via multiprocessing lost thier `_ready_to_publish` flag set by `add_info` on a differnt process, so we need to out it back, so publish can work. * unittest wasn't changed and was still using `queues.Quere`, hence not catching this.
- Loading branch information
Showing
3 changed files
with
8 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters