From 092918053f7f8e8617e891c417a87562890a6544 Mon Sep 17 00:00:00 2001 From: Wei Huang Date: Tue, 23 Jul 2024 16:57:27 +0000 Subject: [PATCH] remove --export=ALL from native, when is_exclusive set true --- workflow/rocoto/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/rocoto/tasks.py b/workflow/rocoto/tasks.py index f506c1d9dc..d339deb974 100644 --- a/workflow/rocoto/tasks.py +++ b/workflow/rocoto/tasks.py @@ -224,7 +224,7 @@ def get_resource(self, task_name): native += ':shared' elif scheduler in ['slurm']: if task_config.get('is_exclusive', False): - native = '--export=ALL --exclusive' + native = '--exclusive' else: native = '--export=NONE' if task_config['RESERVATION'] != "":