Skip to content

Commit

Permalink
Increase IPC write timeout
Browse files Browse the repository at this point in the history
Summary: Increase the timeout of the buffered writer to eqWAlizer from 5s to 240s (to match the reader).

Reviewed By: alanz

Differential Revision: D52603857

fbshipit-source-id: be4293decf5d59c280194188eb6cd14433d7a8a8
  • Loading branch information
VLanvin authored and facebook-github-bot committed Jan 8, 2024
1 parent f1de4c3 commit 773a072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/eqwalizer/src/ipc.rs
Expand Up @@ -82,7 +82,7 @@ pub struct IpcHandle {
_child_for_drop: JodChild,
}

const WRITE_TIMEOUT: Duration = Duration::from_secs(5);
const WRITE_TIMEOUT: Duration = Duration::from_secs(240);
const READ_TIMEOUT: Duration = Duration::from_secs(240);

impl IpcHandle {
Expand Down

0 comments on commit 773a072

Please sign in to comment.