Skip to content

Commit

Permalink
fix: sleep_amount -> download_retry_wait
Browse files Browse the repository at this point in the history
  • Loading branch information
leoisl committed Dec 11, 2023
1 parent 67c4319 commit 04c9095
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def asms_url_fct(wildcards):
return asm_url

def get_sleep_amount(attempt):
return int(config["sleep_amount"]) * (attempt - 1)
return int(config["download_retry_wait"]) * (attempt - 1)

##################################
## Top-level rules
Expand Down

0 comments on commit 04c9095

Please sign in to comment.