Skip to content

Commit e4e7208

Browse files
authored
increase heartbeat timeout (#574)
1 parent 309ab94 commit e4e7208

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/orchestrator/src/store/domains/heartbeat_store.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ impl HeartbeatStore {
2929
con.set_options::<_, _, ()>(
3030
&key,
3131
payload_string,
32-
redis::SetOptions::default().with_expiration(redis::SetExpiry::EX(60)),
32+
redis::SetOptions::default().with_expiration(redis::SetExpiry::EX(180)),
3333
)
3434
.await
3535
.map_err(|_| anyhow!("Failed to set options"))?;

0 commit comments

Comments
 (0)