Proposed fix for ansible/ansible-modules-extras#1348 due to datetime.datetime type not being matched

pull/14404/head
Etherdaemon 9 years ago committed by Brian Coca
parent 24cae22e0b
commit fa88d0770c

@ -65,6 +65,7 @@ import grp
import pwd
import platform
import errno
import datetime
from itertools import repeat, chain
try:
@ -423,10 +424,13 @@ def remove_values(value, no_log_strings):
for omit_me in no_log_strings:
if omit_me in stringy_value:
return 'VALUE_SPECIFIED_IN_NO_LOG_PARAMETER'
elif isinstance(value, datetime.datetime):
value = value.isoformat()
else:
raise TypeError('Value of unknown type: %s, %s' % (type(value), value))
return value
def heuristic_log_sanitize(data, no_log_values=None):
''' Remove strings that look like passwords from log messages '''
# Currently filters:

Loading…
Cancel
Save