Skip to content

Commit

Permalink
update batch size to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
eaypek-tfh committed Sep 17, 2024
1 parent d48da32 commit 19e3adb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iris-mpc/src/bin/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ async fn main() -> eyre::Result<()> {
};

let request_message = UniquenessRequest {
batch_size: None,
batch_size: Some(1),
signup_id: request_id.to_string(),
s3_presigned_url: presigned_url,
iris_shares_file_hashes,
Expand Down Expand Up @@ -504,7 +504,7 @@ async fn main() -> eyre::Result<()> {
};

let request_message = UniquenessRequest {
batch_size: Some(n_deletion_messages),
batch_size: Some(1),
signup_id: request_id.to_string(),
s3_presigned_url: presigned_url,
iris_shares_file_hashes,
Expand Down

0 comments on commit 19e3adb

Please sign in to comment.