From 054179cc5e051490d7d7670a6855f0b141e3cf82 Mon Sep 17 00:00:00 2001 From: fbarreir Date: Mon, 2 Dec 2019 21:42:28 +0100 Subject: [PATCH] prodanaly: use production templates for unified queues --- pandaharvester/harvestermisc/info_utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandaharvester/harvestermisc/info_utils.py b/pandaharvester/harvestermisc/info_utils.py index 289a9a9c..d1452e47 100644 --- a/pandaharvester/harvestermisc/info_utils.py +++ b/pandaharvester/harvestermisc/info_utils.py @@ -121,5 +121,7 @@ def get_type_workflow(self, panda_resource): workflow = None else: pq_type = panda_queue_dict.get('type') + if pq_type == 'unified': # use production templates + pq_type = 'production' workflow = panda_queue_dict.get('workflow') return pq_type, workflow