Skip to content

Commit

Permalink
Fix typo in warning
Browse files Browse the repository at this point in the history
Co-authored-by: Lawrence Mitchell <wence@gmx.li>
  • Loading branch information
pentschev and wence- authored Oct 23, 2024
1 parent c609805 commit f057b83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/src/worker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,13 +167,13 @@ Worker::~Worker()
if (_progressThread.isRunning()) {
ucxx_warn(
"The progress thread should be explicitly stopped with `stopProgressThread()` to prevent "
"unintended effects, such as destructor being called from that thread.");
"unintended effects, such as destructors being called from that thread.");
stopProgressThreadNoWarn();
}
if (_notifier && _notifier->isRunning()) {
ucxx_warn(
"The notifier thread should be explicitly stopped with `stopNotifierThread()` to prevent "
"unintended effects, such as destructor being called from that thread.");
"unintended effects, such as destructors being called from that thread.");
_notifier->stopRequestNotifierThread();
}

Expand Down

0 comments on commit f057b83

Please sign in to comment.