From 0857f327ef62bad93a09281c60d6c9d3ca388e8c Mon Sep 17 00:00:00 2001 From: David Cook Date: Thu, 11 May 2023 11:38:00 -0500 Subject: [PATCH] Set max_batch_query_count to 1 (#85) --- src/clients/aggregator_client/api_types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clients/aggregator_client/api_types.rs b/src/clients/aggregator_client/api_types.rs index d8ea5218..b651180a 100644 --- a/src/clients/aggregator_client/api_types.rs +++ b/src/clients/aggregator_client/api_types.rs @@ -156,7 +156,7 @@ impl From for TaskCreate { } else { Role::Helper }, - max_batch_query_count: 0, + max_batch_query_count: 1, task_expiration: value .expiration .map(|task| task.unix_timestamp().try_into().unwrap())