Skip to content

Commit c1f0a9d

Browse files
author
Chris Wiechmann
committed
#52 Toggle ignoreCache is now part of the usage
1 parent 4be8058 commit c1f0a9d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

modules/apim-adapter/src/main/java/com/axway/apim/lib/APIMCoreCLIOptions.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@ public APIMCoreCLIOptions(String[] args) {
8585
option.setArgName("ALL");
8686
options.addOption(option);
8787

88+
option = new Option("ignoreCache", "The cache for REST-API calls against the API-Manager isn't used at all.");
89+
option.setRequired(false);
90+
options.addOption(option);
91+
8892
option = new Option("rollback", true, "Allows to disable the rollback feature");
8993
option.setRequired(false);
9094
option.setArgName("true");
@@ -98,10 +102,6 @@ public APIMCoreCLIOptions(String[] args) {
98102
option.setRequired(false);
99103
option.setArgName("true");
100104
internalOptions.addOption(option);
101-
102-
option = new Option("ignoreCache", "The cache for REST-API calls isn't used.");
103-
option.setRequired(false);
104-
internalOptions.addOption(option);
105105

106106
this.args = args;
107107
}

0 commit comments

Comments
 (0)