From 5adc4b48c25199f4385e9babd161efefa0abb330 Mon Sep 17 00:00:00 2001 From: Andrey Tsibin Date: Fri, 4 Aug 2023 15:02:53 +0300 Subject: [PATCH] Issue #3320 Repair sge autoscaling --- workflows/pipe-common/scripts/autoscale_grid_engine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflows/pipe-common/scripts/autoscale_grid_engine.py b/workflows/pipe-common/scripts/autoscale_grid_engine.py index 5e4973347b..75f042188f 100644 --- a/workflows/pipe-common/scripts/autoscale_grid_engine.py +++ b/workflows/pipe-common/scripts/autoscale_grid_engine.py @@ -123,7 +123,7 @@ def init_static_hosts(default_hostfile, static_host_storage, clock, active_timeo def get_daemon(): params = GridEngineParameters() - grid_engine_type = GridEngineType.SLURM if params.queue.slurm_selected else GridEngineType.SGE + grid_engine_type = GridEngineType.SLURM if params.queue.slurm_selected.get() else GridEngineType.SGE api_url = os.environ['API']