From 11e04d0782d32d203830c9c8e40094658cee5cae Mon Sep 17 00:00:00 2001 From: Bertrand Lallau Date: Wed, 12 Jul 2017 22:07:37 +0200 Subject: [PATCH] Fix Horizon container starting if Watcher is enabled When Watcher service is enabled, Horizon container failed to start. Path to Horizon dashboard files was wrong. This patch fix it. Change-Id: I8031612caf7c02e02f1079413ff8e648d1a4ca54 Closes-Bug: #1703971 --- docker/horizon/extend_start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/horizon/extend_start.sh b/docker/horizon/extend_start.sh index 9807ce7fc3..dd67a391b4 100644 --- a/docker/horizon/extend_start.sh +++ b/docker/horizon/extend_start.sh @@ -181,7 +181,7 @@ function config_trove_dashboard { function config_watcher_dashboard { for file in ${SITE_PACKAGES}/watcher_dashboard/enabled/_*[^__].py; do config_dashboard "${ENABLE_WATCHER}" \ - "${SITE_PACKAGES}/watcher_dashboard/enabled/${file##*/}" \ + "${SITE_PACKAGES}/watcher_dashboard/local/enabled/${file##*/}" \ "${SITE_PACKAGES}/openstack_dashboard/local/enabled/${file##*/}" done