From ca615945115fa88eb9764ef0f996289fc4e97b40 Mon Sep 17 00:00:00 2001 From: Vu Cong Tuan Date: Mon, 19 Mar 2018 17:02:08 +0700 Subject: [PATCH] Adding driver to mysql connection URL With current URL [1], default driver will be used. In order to ensure the compatibility, it is better to include the exact driver [2]. [1] connection = mysql:// [2] connection = mysql+pymysql:// Change-Id: I4f7b3ccbecfb2f1e2b3d125179dbd5c6fbf5e6b9 --- doc/source/configuration/configuring.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/configuration/configuring.rst b/doc/source/configuration/configuring.rst index b31f02e2e..983874a7e 100644 --- a/doc/source/configuration/configuring.rst +++ b/doc/source/configuration/configuring.rst @@ -217,7 +217,7 @@ so that the watcher service is configured for your needs. # The SQLAlchemy connection string used to connect to the # database (string value) #connection= - connection = mysql://watcher:WATCHER_DBPASSWORD@DB_IP/watcher?charset=utf8 + connection = mysql+pymysql://watcher:WATCHER_DBPASSWORD@DB_IP/watcher?charset=utf8 #. Configure the Watcher Service to use the RabbitMQ message broker by setting one or more of these options. Replace RABBIT_HOST with the