Skip to content

Commit

Permalink
Changed default parallel count
Browse files Browse the repository at this point in the history
Signed-off-by: Ritwik G <[email protected]>
  • Loading branch information
ritwik-g authored Nov 7, 2024
1 parent cb2bc83 commit bfc9d46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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(
Expand Down

0 comments on commit bfc9d46

Please sign in to comment.