From 3bc6b61fe72401c60256e190fe2566c9b0f9d238 Mon Sep 17 00:00:00 2001 From: Alexandru Mahmoud Date: Thu, 27 Jan 2022 13:24:45 -0500 Subject: [PATCH] Add check for converter --- galaxy/files/rules/k8s_container_mapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galaxy/files/rules/k8s_container_mapper.py b/galaxy/files/rules/k8s_container_mapper.py index 45ee0568..c1f63a61 100644 --- a/galaxy/files/rules/k8s_container_mapper.py +++ b/galaxy/files/rules/k8s_container_mapper.py @@ -89,7 +89,7 @@ def k8s_container_mapper(tool, referrer, k8s_runner_id="k8s"): # 3. If no explicit rule mapping was defined, and it's a tool that # requires galaxy_lib, force the default container. Otherwise, # Galaxy's default container resolution will apply. - if tool.id in GALAXY_LIB_TOOLS_UNVERSIONED or ("CONVERTER_" in tool.id and "CONVERTER_" == tool.id[:10]): + if tool.id in GALAXY_LIB_TOOLS_UNVERSIONED or ("CONVERTER_" in tool.id and "CONVERTER_" == tool.id[:10]) or tool.is_datatype_converter: default_container = params.get('docker_default_container_id') if default_container: params['docker_container_id_override'] = default_container