Compare commits

..

4 Commits

Author SHA1 Message Date
453718b936
Added support for upgrade requests
All checks were successful
Build and deploy / Build container and manifests (push) Successful in 5m31s
2025-04-20 22:05:37 +02:00
c65b4d725d
Fixed spelling of shutdown during forceful shutdown 2025-04-20 21:45:05 +02:00
78bc46c56b
Close any remaining connections once the tui exits
All checks were successful
Build and deploy / Build container and manifests (push) Successful in 6m1s
2025-04-20 21:21:07 +02:00
3e726c713f
Fixed stats
All checks were successful
Build and deploy / Build container and manifests (push) Successful in 5m45s
2025-04-20 20:46:31 +02:00

View File

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