Compare commits

..

4 Commits

Author SHA1 Message Date
8cafe2b3ca
Added support for upgrade requests
All checks were successful
Build and deploy / Build container and manifests (push) Successful in 6m9s
2025-04-21 02:21:22 +02:00
ed7770f792
Fixed spelling of shutdown during forceful shutdown 2025-04-21 02:21:22 +02:00
dc1f75aee3
Close any remaining connections once the tui exits 2025-04-21 02:21:22 +02:00
0fe043acb5
Revert "Use store instead of fetch_add for atomics"
All checks were successful
Build and deploy / Build container and manifests (push) Successful in 6m1s
This reverts commit d4bd0ef1ca.
2025-04-21 02:21:18 +02:00

View File

@ -39,7 +39,7 @@ impl Stats {
}
pub fn set_failed(&self, failed: bool) {
self.failed.fetch_and(failed, Ordering::Relaxed);
self.failed.store(failed, Ordering::Relaxed);
}
pub fn rx(&self) -> Unit {