We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49f5065 commit 5f6015aCopy full SHA for 5f6015a
rclrs/src/executor.rs
@@ -147,7 +147,6 @@ impl ExecutorCommands {
147
/// Tell the [`Executor`] to halt its spinning.
148
pub fn halt_spinning(&self) {
149
self.halt_spinning.store(true, Ordering::Release);
150
- // TODO(@mxgrey): Log errors here when logging becomes available
151
self.executor_channel.wake_all_wait_sets();
152
}
153
@@ -297,6 +296,7 @@ impl WorkerCommands {
297
296
298
pub(crate) fn run_on_payload(&self, task: PayloadTask) {
299
self.channel.send_payload_task(task);
+ let _ = self.wakeup_wait_set.trigger();
300
301
302
pub(crate) fn add_activity_listener(&self, listener: WeakActivityListener) {
0 commit comments