fix: change code channel capacity should be i32 size

This commit is contained in:
Erica Marigold 2024-06-09 13:10:06 +05:30
parent c63caca391
commit 4b5b54eb0d
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1

View file

@ -189,7 +189,7 @@ async fn process_spawn(
let (stdin_tx, stdin_rx) = tokio::sync::oneshot::channel();
let (stdout_tx, stdout_rx) = tokio::sync::oneshot::channel();
let (stderr_tx, stderr_rx) = tokio::sync::oneshot::channel();
let (code_tx, code_rx) = tokio::sync::broadcast::channel(100);
let (code_tx, code_rx) = tokio::sync::broadcast::channel(4);
let code_rx_rc = Rc::new(RefCell::new(code_rx));
tokio::spawn(async move {