Skip to content

Commit

Permalink
print sync (#639)
Browse files Browse the repository at this point in the history
  • Loading branch information
philsippl authored Nov 1, 2024
1 parent 25bac46 commit 9daa0fc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/prod/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.40"
image: "ghcr.io/worldcoin/iris-mpc:v0.8.41"

environment: prod
replicaCount: 1
Expand Down
6 changes: 6 additions & 0 deletions iris-mpc-gpu/src/server/actor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1241,6 +1241,12 @@ impl ServerActor {
}

fn sync_batch_entries(&mut self, valid_entries: &[bool]) -> eyre::Result<Vec<bool>> {
tracing::info!(
party_id = self.party_id,
"valid_entries {:?} ({})",
valid_entries,
valid_entries.len()
);
tracing::info!(party_id = self.party_id, "sync_batch_entries start");
let mut buffer = self
.device_manager
Expand Down

0 comments on commit 9daa0fc

Please sign in to comment.