Skip to content

Commit 6d07599

Browse files
authored
From Japan, the 1s heartbeat is too strict to run the kinesis tutorial. (#1574)
1 parent 870c9e1 commit 6d07599

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quickwit-actors/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ pub use crate::runner::ActorRunner;
6767
/// If an actor does not advertise a progress within an interval of duration `HEARTBEAT`,
6868
/// its supervisor will consider it as blocked and will proceed to kill it, as well
6969
/// as all of the actors all the actors that share the killswitch.
70-
pub const HEARTBEAT: Duration = Duration::from_secs(1);
70+
pub const HEARTBEAT: Duration = Duration::from_secs(3);
7171

7272
pub fn message_timeout() -> Duration {
7373
HEARTBEAT.mul_f32(0.2f32)

0 commit comments

Comments
 (0)