Skip to content

Commit 78a9cac

Browse files
authored
embl_hd: Update retry.reason regex pattern in config (#1101)
1 parent 3b5c3ee commit 78a9cac

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

conf/embl_hd.config

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,19 @@ docker {
1515

1616
apptainer {
1717
autoMounts = true
18-
pullTimeout = "3 hours" // the default is 20 minutes and fails with large images
18+
pullTimeout = "3h" // the default is 20 minutes and fails with large images
1919
envWhitelist = 'CUDA_VISIBLE_DEVICES' // allow the bounding of GPU visible device variable into the containers
2020
libraryDir = '/cvmfs/singularity.galaxyproject.org/all/'
2121
}
2222

2323
singularity {
2424
autoMounts = true
25-
pullTimeout = "3 hours"
25+
pullTimeout = "3h"
2626
envWhitelist = 'CUDA_VISIBLE_DEVICES'
2727
}
2828

2929
process {
30+
executor = 'slurm'
3031
maxRetries = 3
3132
errorStrategy = { task.attempt<3 ? 'retry' : 'ignore' }
3233
cache = 'lenient'
@@ -53,5 +54,5 @@ executor {
5354
submitRateLimit = "10/1sec"
5455
pollInterval = '10sec'
5556
exitReadTimeout = "5 min"
56-
retry.reason = "*"
57+
retry.reason = ".*"
5758
}

0 commit comments

Comments
 (0)