From a4d4c044c8854de8cfd5fd77b7e235df9d508f9f Mon Sep 17 00:00:00 2001 From: Jakub Kadlcik Date: Fri, 24 Nov 2017 01:04:54 +0100 Subject: [PATCH] Fix KeyError issue with relay_inbound and relay_outbound settings --- roles/copr/mbs/templates/module_build_service.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/copr/mbs/templates/module_build_service.py b/roles/copr/mbs/templates/module_build_service.py index dd227c0057..d9099de1e9 100644 --- a/roles/copr/mbs/templates/module_build_service.py +++ b/roles/copr/mbs/templates/module_build_service.py @@ -51,6 +51,6 @@ else: config['endpoints']['relay_outbound'] = ["tcp://127.0.0.1:4001"] config['relay_inbound'] = ["tcp://127.0.0.1:2003"] {% else %} - config['endpoints']['relay_outbound'].append('tcp://172.25.32.175:4001') - config['relay_inbound'].append('tcp://172.25.32.175:2003') + config['endpoints']['relay_outbound'] = ['tcp://172.25.32.175:4001'] + config['relay_inbound'] = ['tcp://172.25.32.175:2003'] {% endif %}