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 55beb5a commit e76a821Copy full SHA for e76a821
compute/src/node/diagnostic.rs
@@ -7,7 +7,8 @@ use crate::{
7
};
8
9
/// Number of seconds such that if the last heartbeat ACK is older than this, the node is considered unreachable.
10
-const HEARTBEAT_LIVENESS_SECS: Duration = Duration::from_secs(150);
+/// This must be at least greated than the heartbeat interval duration, and the liveness check duration.
11
+const HEARTBEAT_LIVENESS_SECS: Duration = Duration::from_secs(4 * 60);
12
13
impl DriaComputeNode {
14
/// Returns the task count within the channels, `single` and `batch`.
0 commit comments