1
0
mirror of https://github.com/actix/examples synced 2025-06-28 01:49:02 +02:00

Merge pull request #129 from blackjune/patch-1

Fix bug in state type
This commit is contained in:
Nikolay Kim
2019-05-25 09:20:40 -07:00
committed by GitHub

View File

@ -28,7 +28,7 @@ fn main() -> io::Result<()> {
std::env::set_var("RUST_LOG", "actix_web=info");
env_logger::init();
let counter = Arc::new(Mutex::new(0));
let counter = Arc::new(Mutex::new(0usize));
//move is necessary to give closure below ownership of counter
HttpServer::new(move || {