1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-06-26 19:47:43 +02:00
This commit is contained in:
Nikolay Kim
2019-12-25 15:10:13 +04:00
parent 0fe8038d23
commit 119027f822
4 changed files with 5 additions and 5 deletions

View File

@ -391,7 +391,7 @@ impl ServerBuilder {
.await;
System::current().stop();
}
.boxed(),
.boxed(),
);
}
ready(())

View File

@ -153,7 +153,7 @@ impl InternalServiceFactory for ConfiguredService {
}
return Ok(res);
}
.boxed_local()
.boxed_local()
}
}
@ -280,6 +280,6 @@ where
}
};
}
.boxed_local()
.boxed_local()
}
}

View File

@ -217,7 +217,7 @@ impl Worker {
wrk.await
});
}
.boxed(),
.boxed(),
);
WorkerClient::new(idx, tx1, tx2, avail)