Compare commits

..

No commits in common. "4307a199bcad6c65bbddfb0df8b51b6bab8306b8" and "ead9ebdcf80c8d5eefa022fba40757fe65cb7175" have entirely different histories.

1 changed files with 1 additions and 4 deletions

View File

@ -121,9 +121,6 @@ async fn handle_http_request (
{
use RequestError::*;
let req_id = rusty_ulid::generate_ulid_string ();
debug! ("Created request {}", req_id);
let req_method = req.method.clone ();
if ! state.server_exists (server_name).await {
@ -137,7 +134,7 @@ async fn handle_http_request (
let req_id = rusty_ulid::generate_ulid_string ();
debug! ("Forwarding {}", req_id);
trace! ("Created request {}", req_id);
{
let response_rendezvous = state.response_rendezvous.read ().await;