This line in $SPLUNK_HOME/lib/python3.7/site-packages/splunk/clilib/cli_common.py was the source of an error when configuration initialization is slow... if err:
logger.error(
'Failed to decrypt value: {}, error: {}'.format(value, err))
return None
return out.strip() There is a wallclock message that gets in the middle of the decrypt operation causing it to fail. Changed code to this, and problem went away. if 'took wallclock_ms' no in err:
logger.error(
'Failed to decrypt value: {}, error: {}'.format(value, err))
return None
return out.strip()
... View more