Skip to content

Commit

Permalink
Reduce the number of retries to 3
Browse files Browse the repository at this point in the history
  • Loading branch information
kjsanger committed Dec 5, 2023
1 parent 735d6a1 commit 3775244
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/npg_irods/cli/locate_data_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,12 +362,12 @@ def main():
"--skip-absent-runs",
"--skip_absent_runs",
help="Skip runs that cannot be found in iRODS after the number of attempts given "
"as an argument to this option. The argument may be an integer from 1 to 100, "
"inclusive and defaults to 10.",
"as an argument to this option. The argument may be an integer from 1 to 10, "
"inclusive and defaults to 3.",
nargs="?",
action="store",
type=integer_in_range(1, 100),
default=10,
type=integer_in_range(1, 10),
default=3,
)
ilup_parser.set_defaults(func=illumina_updates_cli)

Expand Down

0 comments on commit 3775244

Please sign in to comment.