We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c278189 commit 32cd4ffCopy full SHA for 32cd4ff
crates/client/src/lib.rs
@@ -75,7 +75,7 @@ pub async fn inject(
75
let ipc_addr = create_ipc_addr(pid, module_handle);
76
77
let connect = IpcClientConn::new(ClientOptions::new().open(ipc_addr)?);
78
- let timeout = sleep(timeout.unwrap_or(Duration::from_secs(10)));
+ let timeout = sleep(timeout.unwrap_or(Duration::MAX));
79
let conn = select! {
80
res = connect => res?,
81
_ = timeout => bail!("ipc client wait timeout"),
0 commit comments