From 77dae2adb78c9036e172fc8438f46b9330e889ad Mon Sep 17 00:00:00 2001 From: Kirill Zaitsev Date: Thu, 25 Feb 2016 18:50:48 +0300 Subject: [PATCH] Update docs, to reflect correct place for driver config option Change-Id: I6ab61f3c0e57f97b58db25e65d479d92c1c3bce8 Related-Bug: #1535611 --- doc/source/draft/admin-guide/admin_troubleshooting.rst | 3 ++- doc/source/install/manual.rst | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/source/draft/admin-guide/admin_troubleshooting.rst b/doc/source/draft/admin-guide/admin_troubleshooting.rst index c604394f1..6acd77031 100644 --- a/doc/source/draft/admin-guide/admin_troubleshooting.rst +++ b/doc/source/draft/admin-guide/admin_troubleshooting.rst @@ -145,7 +145,8 @@ Workarounds: :file:`/var/log/murano-agent.log` The first part of the log file contains reconnection attempts to the RabbitMQ since the valid RabbitMQ address and queue have not been obtained yet. -* Verify that the ``driver`` option is set to ``messagingv2`` +* Verify that the ``driver`` option in ``[oslo_messaging_notifications]`` group + is set to ``messagingv2``. **murano.engine.system.agent.AgentException** diff --git a/doc/source/install/manual.rst b/doc/source/install/manual.rst index 07cad2ebd..1cfe82a85 100644 --- a/doc/source/install/manual.rst +++ b/doc/source/install/manual.rst @@ -161,6 +161,10 @@ Install the API service and Engine rabbit_userid = %RABBITMQ_USER% rabbit_password = %RABBITMQ_PASSWORD% rabbit_virtual_host = %RABBITMQ_SERVER_VIRTUAL_HOST% + + ... + + [oslo_messaging_notifications] driver = messagingv2 ...