1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-25 06:39:22 +02:00

Use AtomicUsize properly

doing a read+write on an atomic int will lose updates from other threads.
This commit is contained in:
Robert Collins
2018-02-13 13:47:59 +13:00
committed by GitHub
parent 335ca8ff33
commit 57655d8153

View File

@ -89,8 +89,7 @@ impl<S> Handler<S> for MyHandler {
/// Handle request
fn handle(&mut self, req: HttpRequest<S>) -> Self::Result {
let num = self.0.load(Ordering::Relaxed) + 1;
self.0.store(num, Ordering::Relaxed);
self.0.fetch_add(1, Ordering::Relaxed);
httpcodes::HTTPOk.into()
}
}