revert: is_running AtomicBool back to SeqCst

This commit is contained in:
Jack Wills
2023-01-28 20:45:02 +00:00
parent b4488e4bdb
commit c4d80061da
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -405,7 +405,7 @@ impl DockerData {
.values()
.into_iter()
.for_each(tokio::task::JoinHandle::abort);
self.is_running.store(false, Ordering::Relaxed);
self.is_running.store(false, Ordering::SeqCst);
}
}
}