Skip to content

Commit

Permalink
added maxretries
Browse files Browse the repository at this point in the history
  • Loading branch information
yueyaog committed Jul 8, 2024
1 parent e859c58 commit 9a4a6de
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CNV_Array_Prober/cnvArrayProber.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ task cnvArrayProber {
Int cpu = 2
Int disk_size_gb = 500
Boolean use_ssd = false
Int preemptible = 3
Int maxRetries = 3
}
command <<<
set -e
Expand All @@ -60,5 +62,7 @@ task cnvArrayProber {
memory: memory
cpu: cpu
disks: "local-disk " + disk_size_gb + if use_ssd then " SSD" else " HDD"
preemptible: preemptible
maxRetries: maxRetries
}
}

0 comments on commit 9a4a6de

Please sign in to comment.