mirror of
https://github.com/valitydev/curator-opensearch.git
synced 2024-11-06 02:05:19 +00:00
fixed
This commit is contained in:
parent
687ddea4f1
commit
057662b01c
2
.gitignore
vendored
2
.gitignore
vendored
@ -127,3 +127,5 @@ dmypy.json
|
||||
|
||||
# Pyre type checker
|
||||
.pyre/
|
||||
|
||||
.howtobuild
|
||||
|
@ -1,2 +1,2 @@
|
||||
"""Curator Version"""
|
||||
__version__ = '0.0.6'
|
||||
__version__ = '0.0.7'
|
||||
|
@ -2124,7 +2124,10 @@ def password_filter_special(data):
|
||||
if isinstance(value, dict):
|
||||
iterdict(value)
|
||||
elif key == "http_auth":
|
||||
mydict.update({"http_auth": (value[0],"REDACTED")})
|
||||
if value is None:
|
||||
mydict.update({"http_auth": None})
|
||||
else:
|
||||
mydict.update({"http_auth": "REDACTED"})
|
||||
elif key == "password":
|
||||
mydict.update({"password": "REDACTED"})
|
||||
return mydict
|
||||
|
Loading…
Reference in New Issue
Block a user