From d64478fd35a7024f46fa8dbf54103a7a0e30be5a Mon Sep 17 00:00:00 2001 From: galstrom21 Date: Tue, 7 Jan 2014 10:38:06 -0600 Subject: [PATCH] Hiding postgresql password in connection string Closes-Bug: #1266804 Change-Id: Iafc820d6201acf5b563b62bd9f20a715901f1ab4 --- cinder/service.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cinder/service.py b/cinder/service.py index 02674f5cf..ea21cd4eb 100644 --- a/cinder/service.py +++ b/cinder/service.py @@ -633,7 +633,8 @@ def wait(): # hide flag contents from log if contains a password # should use secret flag when switch over to openstack-common if ("_password" in flag or "_key" in flag or - (flag == "sql_connection" and "mysql:" in flag_get)): + (flag == "sql_connection" and + ("mysql:" in flag_get or "postgresql:" in flag_get))): LOG.debug(_('%s : FLAG SET ') % flag) else: LOG.debug('%(flag)s : %(flag_get)s' % -- 2.45.2