Update h3_server.rs

This commit is contained in:
Ryo Ota
2021-05-31 06:57:04 +09:00
committed by Dirkjan Ochtman
parent e3060d3ff2
commit 79c3153e2a
+1 -1
View File
@@ -65,7 +65,7 @@ async fn main() -> Result<()> {
}
};
// Handle each request concurently
// Handle each request concurrently
while let Some(request) = incoming_request.next().await {
tokio::spawn(async move {
if let Err(e) = handle_request(request).await {