Update docs, to reflect correct place for driver config option

Change-Id: I6ab61f3c0e57f97b58db25e65d479d92c1c3bce8
Related-Bug: #1535611
This commit is contained in:
Kirill Zaitsev 2016-02-25 18:50:48 +03:00 committed by Kirill Zaitsev
parent 9eab33151d
commit 77dae2adb7
2 changed files with 6 additions and 1 deletions

View File

@ -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**

View File

@ -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
...