From 1a97344381bb2c2846813f0247839fa782d92f2c Mon Sep 17 00:00:00 2001 From: Sharat Sharma Date: Mon, 5 Jun 2017 18:12:45 +0530 Subject: [PATCH] Remove the deprecated configuration options The configuration guide still mentions few deprecated config options like rabbit_userid, rabbit_host, rabbit_password and rpc_backend which are deprecated. They are replaced by the transport_url option. Change-Id: Iec8ce5c857c4bc0d3f7729d6b71de77cf0addc03 Bug-Id: #1695857 --- doc/source/guides/configuration_guide.rst | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/doc/source/guides/configuration_guide.rst b/doc/source/guides/configuration_guide.rst index 08eb4270a..ea01737db 100644 --- a/doc/source/guides/configuration_guide.rst +++ b/doc/source/guides/configuration_guide.rst @@ -60,18 +60,10 @@ directory. $ openstack service create workflowv2 --name mistral --description 'OpenStack Workflow service' $ openstack endpoint create workflowv2 --publicurl $MISTRAL_URL --adminurl $MISTRAL_URL --internalurl $MISTRAL_URL -#. Configure transport properties in the corresponding config section: for - RabbitMQ it is **oslo_messaging_rabbit**:: - - [oslo_messaging_rabbit] - rabbit_userid = - rabbit_password = - rabbit_host = - - **NOTE**: Make sure that backend transport configuration is correct. Example for RabbitMQ:: +#. Configure transport properties in the [DEFAULT] section:: [DEFAULT] - rpc_backend = rabbit + transport_url = rabbit://:@:5672/ #. Configure database. **SQLite can't be used in production**. Use *MySQL* or *PostgreSQL* instead. Here are the steps how to connect *MySQL* DB to Mistral: