Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion codex-rs/exec-server/src/client_transport.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ impl ExecServerClient {
connect_async_with_config(
request,
Some(noise_relay_websocket_config()),
/*disable_nagle*/ false,

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

put a pr comment explaining this

/*disable_nagle*/ true,
),
)
.await
Expand Down
2 changes: 1 addition & 1 deletion codex-rs/exec-server/src/remote.rs
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ async fn connect_rendezvous(
connect_async_with_config(
request,
Some(noise_relay_websocket_config()),
/*disable_nagle*/ false,
/*disable_nagle*/ true,
)
.await
.map(|(websocket, _)| websocket)
Expand Down
Loading