From 8c264eb0fe7a704e5ed8d52b765a692303be289f Mon Sep 17 00:00:00 2001 From: Ilya Shakhat Date: Fri, 11 Jan 2019 12:26:17 +0100 Subject: [PATCH] Reload keystone to apply osprofiler config In DevStack Keystone is configured and started within the same phase (while other services allow to be configured before starting). To apply osprofiler configuration, Keystone needs to be reloaded. Change-Id: Icf69c4e7f602702cf68986a6073b2cd4c0c3abe8 --- devstack/lib/osprofiler | 3 +++ 1 file changed, 3 insertions(+) diff --git a/devstack/lib/osprofiler b/devstack/lib/osprofiler index f0cdeeb..6990517 100644 --- a/devstack/lib/osprofiler +++ b/devstack/lib/osprofiler @@ -94,6 +94,9 @@ function configure_osprofiler() { iniset $conf profiler connection_string $OSPROFILER_CONNECTION_STRING fi done + + # Keystone is already running, should be reloaded to apply osprofiler config + reload_service devstack@keystone }