Skip to content

Commit

Permalink
change default to 900 (15m)
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jul 8, 2026
1 parent 7fbb4f8 commit 9133f73
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
--adds-only Only process groups with add_count > 0
--deletes-only Only process groups with delete_count > 0
--dry-run Print what would run without executing anything
--timeout SEC Per-group command timeout in seconds (default: 600)
--timeout SEC Per-group command timeout in seconds (default: 900)
--log-dir DIR Directory for the run log file; created if absent (default: logs/)
"""

Expand Down Expand Up @@ -101,8 +101,8 @@ def parse_args() -> argparse.Namespace:
help="Only process groups with delete_count > 0")
p.add_argument("--dry-run", action="store_true",
help="Print tasks without executing")
p.add_argument("--timeout", type=int, default=600, metavar="SEC",
help="Per-group command timeout in seconds (default: 600)")
p.add_argument("--timeout", type=int, default=900, metavar="SEC",
help="Per-group command timeout in seconds (default: 900)")
p.add_argument("--version", action="version", version=f"%(prog)s {__version__}")
p.add_argument("--log-dir", default="logs", metavar="DIR",
help="Directory for the run log file (default: logs/)")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
--csv-file PATH Path to idc_reconcile.csv (full action report).
Passed as CSV_FILE env var.
--dry-run Print what would run without executing
--timeout SEC Command timeout in seconds (default: 600)
--timeout SEC Command timeout in seconds (default: 900)
--log-dir DIR Directory for the run log file; created if absent
(default: logs/)
"""
Expand Down Expand Up @@ -117,8 +117,8 @@ def parse_args() -> argparse.Namespace:
help="Path to idc_reconcile.csv; passed as CSV_FILE env var")
p.add_argument("--dry-run", action="store_true",
help="Print what would run without executing")
p.add_argument("--timeout", type=int, default=600, metavar="SEC",
help="Command timeout in seconds (default: 600)")
p.add_argument("--timeout", type=int, default=900, metavar="SEC",
help="Command timeout in seconds (default: 900)")
p.add_argument("--log-dir", default="logs", metavar="DIR",
help="Directory for the run log file; created if absent (default: logs/)")
p.add_argument("--version", action="version", version=f"%(prog)s {__version__}")
Expand Down

0 comments on commit 9133f73

Please sign in to comment.