From bccc7c467d606ed1cd16c836068a8f3c58f3b753 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Wed, 5 Apr 2023 00:25:01 +0900 Subject: [PATCH] Fix missing comma causing syntax error This fixes one missing comma in octavia dashboard configuration to fix the syntax error. Closes-Bug: #2015271 Change-Id: If896f922db09396415a095fb9a8062eca32a9d06 --- templates/_1499_load_balancer_settings.py.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/_1499_load_balancer_settings.py.erb b/templates/_1499_load_balancer_settings.py.erb index d25153bc..01e5fd27 100644 --- a/templates/_1499_load_balancer_settings.py.erb +++ b/templates/_1499_load_balancer_settings.py.erb @@ -15,7 +15,7 @@ settings.DEFAULT_POLICY_FILES.update({ # 'handlers': ['console'], # 'level': 'DEBUG', # 'propagate': False, -# } +# }, # 'barbicanclient': { # 'handlers': ['console'], # 'level': 'DEBUG', @@ -29,7 +29,7 @@ settings.LOGGING['loggers'].update({ # level': 'DEBUG', 'level': '<%= @log_level %>', 'propagate': False, - } + }, 'barbicanclient': { # 'handlers': ['console'], 'handlers': ['<%= @log_handlers.join("', '") %>'],