Skip to content

Commit

Permalink
refactor(apply): sets default for retry args in apply signature
Browse files Browse the repository at this point in the history
  • Loading branch information
RomilShah authored and pallabpain committed Aug 10, 2023
1 parent aa025f3 commit 995a9c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions riocli/apply/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ def apply(
values: str,
secrets: str,
files: Iterable[str],
retry_count: int,
retry_interval: int,
retry_count: int = 50,
retry_interval: int = 6,
dryrun: bool = False,
workers: int = 6,
silent: bool = False,
Expand Down

0 comments on commit 995a9c5

Please sign in to comment.