mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
fix: change code channel capacity should be i32 size
This commit is contained in:
parent
c63caca391
commit
4b5b54eb0d
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue