From: Roman Podolyaka Date: Wed, 27 Mar 2013 05:59:39 +0000 (+0200) Subject: Mark 'sql_connection' config option as secret X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=b5e6c2c8556927efb6de9de1e7c19e0aab450b10;p=openstack-build%2Fneutron-build.git Mark 'sql_connection' config option as secret Fixes bug 1160680. Change-Id: I42b16d006f162cb41090fa34677d6ad054b6a55a --- diff --git a/quantum/db/api.py b/quantum/db/api.py index 72bc2964d..2629b2937 100644 --- a/quantum/db/api.py +++ b/quantum/db/api.py @@ -42,7 +42,8 @@ SQL_CONNECTION_DEFAULT = 'sqlite://' database_opts = [ cfg.StrOpt('sql_connection', help=_('The SQLAlchemy connection string used to connect to ' - 'the database')), + 'the database'), + secret=True), cfg.IntOpt('sql_max_retries', default=-1, help=_('Database reconnection retry times')), cfg.IntOpt('reconnect_interval', default=2,