Skip to content

Commit b21dd64

Browse files
authored
Merge pull request #160 from hyperware-ai/wh/back-off-fix
Wh/back off fix
2 parents 6a4b798 + 253575e commit b21dd64

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

src/hyperwallet_client/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ pub(crate) fn send_message(
158158
// Use local address pattern like HTTP client - hyperwallet is always local
159159
let response = Request::to(("our", "hyperwallet", "hyperwallet", "sys"))
160160
.body(serde_json::to_vec(&message).map_err(HyperwalletClientError::Serialization)?)
161-
.send_and_await_response(5) // 5s timeout
161+
.send_and_await_response(45) // 45s timeout
162162
.map_err(|e| HyperwalletClientError::Communication(e.into()))?
163163
.map_err(|e| HyperwalletClientError::Communication(e.into()))?;
164164

0 commit comments

Comments
 (0)