From a33e9fd65540d0b06e6612de462f57983c61912a Mon Sep 17 00:00:00 2001 From: Nicolas Vannieuwkerke Date: Mon, 18 Nov 2024 13:28:15 +0100 Subject: [PATCH] fix issue for tier1 clusters --- conf/vsc_ugent.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/vsc_ugent.config b/conf/vsc_ugent.config index 4cdcd7c6a..6c37cd2e1 100644 --- a/conf/vsc_ugent.config +++ b/conf/vsc_ugent.config @@ -80,7 +80,7 @@ aws { maxErrorRetry = 3 } -def cluster = System.getenv("SLURM_CLUSTERS") ?: System.getenv("HPCUGENT_FAMILY_CLUSTER_VERSION") ?: "" +def cluster = System.getenv("HPCUGENT_FAMILY_CLUSTER_VERSION") ?: System.getenv("SLURM_CLUSTERS") ?: "" if( !cluster ) { System.err.println("WARNING: Could not get the name of the currently used cluster, defaulting to doduo")