From e222585c98b2176a2e8a8b0ba2cac901491764d1 Mon Sep 17 00:00:00 2001 From: DuYaHong Date: Wed, 14 May 2014 22:36:01 +0800 Subject: [PATCH] Add 'secret' property for 'connection' option Neutron cli registers 'connection' option without 'secret=True' property. This commit makes sure 'connection' option has 'secret' property when it is registered. Change-Id: I0b0a5aca44a8eeee1c12513f30b9559f1d008442 Closes-Bug: #1319651 --- neutron/db/migration/cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/neutron/db/migration/cli.py b/neutron/db/migration/cli.py index 850806e89..6f997777a 100644 --- a/neutron/db/migration/cli.py +++ b/neutron/db/migration/cli.py @@ -45,6 +45,7 @@ _db_opts = [ cfg.StrOpt('connection', deprecated_name='sql_connection', default='', + secret=True, help=_('URL to database')), ] -- 2.45.2