From eb6377582310f0083deaaa6412a5364b57639cf2 Mon Sep 17 00:00:00 2001 From: Joachim Gabler Date: Wed, 11 Sep 2024 20:51:00 +0200 Subject: [PATCH] fixed sge_qmaster crash in building of category string --- source/daemons/common/category.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/daemons/common/category.cc b/source/daemons/common/category.cc index 46633ddcf..caef0b7dc 100644 --- a/source/daemons/common/category.cc +++ b/source/daemons/common/category.cc @@ -176,7 +176,7 @@ void sge_build_job_category_dstring(dstring *category_str, lListElem *job, const // TODO: evaluate if soft requests should be part of the category string #if 1 // -scope global -soft -q - sge_unparse_resource_list_dstring(category_str, job_get_queue_listRW(job, JRS_SCOPE_GLOBAL, false), "-scope global -soft -q"); + sge_unparse_queue_list_dstring(category_str, job_get_queue_listRW(job, JRS_SCOPE_GLOBAL, false), "-scope global -soft -q"); // -scope global -soft -l sge_unparse_resource_list_dstring(category_str, job_get_resource_listRW(job, JRS_SCOPE_GLOBAL, false), "-scope global -soft -l");