[Fix] Pipes...
Some checks failed
CI / checks (push) Failing after 1m52s

This commit is contained in:
Alex Emmet 2026-07-15 03:41:54 +02:00
commit 6a65e43ca9
10 changed files with 353 additions and 104 deletions

View file

@ -101,8 +101,7 @@ pub async fn host(
};
let incoming_tx = incoming_tx.clone();
let policy = policy.clone();
tokio::spawn(handle_connection(connection, incoming_tx, policy));
tokio::spawn(handle_connection(connection, incoming_tx, policy.clone()));
}
});