Skip to content

Commit

Permalink
Merge pull request #34 from chkp-edenbr/master
Browse files Browse the repository at this point in the history
set default to true
  • Loading branch information
chkp-edenbr authored Oct 27, 2024
2 parents c7b280e + 78442f7 commit 059f650
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ public enum ShowPackageConfiguration {
private static Set<String> knownInlineLayers = new HashSet<>();
private static String publishedSessionUid;

// Indicates whether to show Access/Threat/NAT policy as part of policy package. Default is true.
// Indicates whether to show Access/Threat/NAT/HTTPS policy as part of policy package. Default is true.
private static boolean doShowAccessPolicy = true;
private static boolean doShowThreatPolicy = true;
private static boolean doShowNatPolicy = true;
private static boolean doShowHttpsPolicy = false;
private static boolean doShowHttpsPolicy = true;

/*Logger settings*/

Expand Down Expand Up @@ -1176,7 +1176,7 @@ void runCommand(String value)
@Override
String debugString()
{
return "Show nat policy (--show-https-policy)=" + doShowHttpsPolicy;
return "Show https policy (--show-https-policy)=" + doShowHttpsPolicy;
}

@Override
Expand Down

0 comments on commit 059f650

Please sign in to comment.