There was an error while loading. Please reload this page.
1 parent 98b87f2 commit 5aec8a7Copy full SHA for 5aec8a7
1 file changed
codex-rs/app-server/src/transport/unix_socket.rs
@@ -63,7 +63,8 @@ async fn run_control_socket_acceptor(
63
err.kind(),
64
ErrorKind::ConnectionAborted | ErrorKind::ConnectionReset | ErrorKind::Interrupted
65
) {
66
- return;
+ warn!("recoverable control socket accept error: {err}");
67
+ continue;
68
}
69
error!("control socket accept error: {err}");
70
tokio::time::sleep(Duration::from_secs(1)).await;
0 commit comments