We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75cc0bb commit af64eafCopy full SHA for af64eaf
core/src/main/python/wlsdeploy/util/target_configuration.py
@@ -114,8 +114,8 @@ def generate_script_for_secrets(self):
114
Determine if it needs to generate shell script for creating secrets.
115
:return: True if it is not equal to json
116
"""
117
- return not self.get_credentials_output_method() in ['json']
118
-
+ # output method is None for discover with no target
+ return not self.get_credentials_output_method() in [None, 'json']
119
120
def generate_json_for_secrets(self):
121
0 commit comments