From bfc9d467c2eafd9700c37c0375203543474941bd Mon Sep 17 00:00:00 2001 From: Ritwik G <100672805+ritwik-g@users.noreply.github.com> Date: Thu, 7 Nov 2024 14:38:45 +0530 Subject: [PATCH] Changed default parallel count Signed-off-by: Ritwik G <100672805+ritwik-g@users.noreply.github.com> --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 164132f..88eaf53 100644 --- a/main.py +++ b/main.py @@ -27,7 +27,7 @@ class Arguments: api_timeout: int = 10 poll_interval: int = 5 input_folder_path: str = "" - parallel_call_count: int = 10 + parallel_call_count: int = 5 retry_failed: bool = False retry_pending: bool = False skip_pending: bool = False @@ -367,7 +367,7 @@ def main(): "--parallel_call_count", dest="parallel_call_count", type=int, - default=10, + default=5, help="Number of calls to be made in parallel.", ) parser.add_argument(