Skip to content

Commit

Permalink
Update heartbeat config and init config (#468)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielle-tfh authored Sep 27, 2024
1 parent 266cccf commit 3b1a7e4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion deploy/stage/common-values-iris-mpc.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
image: "ghcr.io/worldcoin/iris-mpc:v0.8.14"
image: "ghcr.io/worldcoin/iris-mpc:v0.8.15"

environment: stage
replicaCount: 1
Expand Down
2 changes: 1 addition & 1 deletion deploy/stage/mpc1-stage/values-iris-mpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ env:
value: "true"

- name: SMPC__INIT_DB_SIZE
value: "100"
value: "0"

- name: SMPC__MAX_DB_SIZE
value: "1000000"
Expand Down
2 changes: 1 addition & 1 deletion deploy/stage/mpc2-stage/values-iris-mpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ env:
value: "true"

- name: SMPC__INIT_DB_SIZE
value: "100"
value: "0"

- name: SMPC__MAX_DB_SIZE
value: "1000000"
Expand Down
2 changes: 1 addition & 1 deletion deploy/stage/mpc3-stage/values-iris-mpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ env:
value: "true"

- name: SMPC__INIT_DB_SIZE
value: "100"
value: "0"

- name: SMPC__MAX_DB_SIZE
value: "1000000"
Expand Down
2 changes: 1 addition & 1 deletion iris-mpc-gpu/src/server/heartbeat_nccl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use tokio::{
task::{spawn_blocking, JoinHandle},
time::timeout,
};
const HEARBEAT_INTERVAL: Duration = Duration::from_secs(30);
const HEARBEAT_INTERVAL: Duration = Duration::from_secs(5);

pub async fn start_heartbeat(
party_id: usize,
Expand Down

0 comments on commit 3b1a7e4

Please sign in to comment.