kiwi1969 commented on a change in pull request #654:
URL: https://github.com/apache/jmeter/pull/654#discussion_r603654295
##########
File path: src/core/src/main/java/org/apache/jmeter/util/SSLManager.java
##########
@@ -143,7 +143,12 @@ protected synchronized JmeterKeyStore getKeyStore() {
} else {
File initStore = new File(fileName);
if (fileName.length() > 0 && initStore.exists()) {
- retryLoadKeys(initStore, true);
+ String os = System.getProperty("os.name");
+ if ( os.equals("z/OS") ) {
Review comment:
Sounds like a plan. Then others can later also add to the boolean
allowEmptyPassword easily.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]