Skip to content

Commit 6213380

Browse files
committed
proxy command : proxy before http config
1 parent 60d91e7 commit 6213380

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/telosys/tools/cli/commands/ProxyCommand.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ public String execute(String[] args) {
6262
HttpSystemConfig.init(new File(configFile));
6363
}
6464
// Get and print configuration
65-
for ( String s : HttpSystemConfig.getCurrentHttpConfig() ) {
65+
for ( String s : HttpSystemConfig.getCurrentProxyConfig() ) {
6666
print(s);
6767
}
68-
for ( String s : HttpSystemConfig.getCurrentProxyConfig() ) {
68+
for ( String s : HttpSystemConfig.getCurrentHttpConfig() ) {
6969
print(s);
7070
}
7171
return null ;

0 commit comments

Comments
 (0)