Skip to content

Commit

Permalink
hide proxy pwd when debug trace is on
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiwoo Lim committed Jan 20, 2025
1 parent 4e6870c commit 215a2e4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
import com.ibm.ws.install.InstallConstants.VerifyOption;
import com.ibm.ws.install.InstallException;
import com.ibm.ws.install.featureUtility.props.FeatureUtilityProperties;
import com.ibm.ws.install.featureUtility.props.PropertiesUtils;
import com.ibm.ws.install.internal.InstallKernelMap;
import com.ibm.ws.install.internal.InstallLogUtils;
import com.ibm.ws.install.internal.InstallLogUtils.Messages;
Expand Down Expand Up @@ -315,7 +316,7 @@ private void overrideEnvMapWithProperties() throws InstallException{
InstallException.MISSING_CONTENT);
}
overrideMap.put(protocol + ".proxyUser", username);
overrideMap.put(protocol + ".proxyPassword", password);
overrideMap.put(protocol + ".proxyPassword", PropertiesUtils.CmdlineConstants.HIDDEN_PASSWORD);

}

Expand Down

0 comments on commit 215a2e4

Please sign in to comment.