src/server/worker_task.rs: log message when we call request_abort()

This commit is contained in:
Dietmar Maurer 2019-04-10 13:54:28 +02:00
parent 2b6a3e1396
commit 98a181f055
1 changed files with 1 additions and 0 deletions

View File

@ -476,6 +476,7 @@ impl WorkerTask {
/// Request abort
pub fn request_abort(&self) {
eprintln!("set abort flag for worker {}", self.upid);
self.abort_requested.store(true, Ordering::SeqCst);
}