From 790fb9391f038a7bb8fae23cf4833f0ee1f32ccb Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Thu, 23 Mar 2023 00:49:08 +0900 Subject: [PATCH] [cache] memcache_password should be secret ... because the parameter accepts a password in plain text. Change-Id: I97df7068cc06c88d9a9adba032a2186a301d7777 --- oslo_cache/_opts.py | 1 + 1 file changed, 1 insertion(+) diff --git a/oslo_cache/_opts.py b/oslo_cache/_opts.py index e99a890b..d583d7b6 100644 --- a/oslo_cache/_opts.py +++ b/oslo_cache/_opts.py @@ -126,6 +126,7 @@ FILE_OPTIONS = { help='the user name for the memcached which SASL enabled'), cfg.StrOpt('memcache_password', default='', + secret=True, help='the password for the memcached which SASL enabled'), cfg.BoolOpt('tls_enabled', default=False,