From a777395f126fdfa62f6131ef3fdeb7b2b79ff81f Mon Sep 17 00:00:00 2001 From: Kelly Sovacool Date: Wed, 6 Sep 2023 22:20:17 -0400 Subject: [PATCH] ci: downgrade task attempt memory --- conf/modules.config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/modules.config b/conf/modules.config index 81ea168b..b2bba32d 100644 --- a/conf/modules.config +++ b/conf/modules.config @@ -1,4 +1,4 @@ - +// additional process directives are in conf/production.config process { publishDir = [ @@ -8,7 +8,7 @@ process { ] cpus = { check_max( 1 * task.attempt, 'cpus' ) } - memory = { check_max( 7.GB * task.attempt, 'memory' ) } + memory = { check_max( 6.8.GB * task.attempt, 'memory' ) } time = { check_max( 4.h * task.attempt, 'time' ) } errorStrategy = 'finish'