Skip to content

Commit

Permalink
2431 httpRetryEnabled feature (2409) is inaccessible as it has not be…
Browse files Browse the repository at this point in the history
…en exposed as a valid key in the configure function
  • Loading branch information
krystiansola authored and f-delahaye committed Nov 4, 2023
1 parent 54fbeb3 commit a213ae6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions karate-core/src/main/java/com/intuit/karate/core/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,9 @@ public boolean configure(String key, Variable value) { // TODO use enum
nonProxyHosts = (List) map.get("nonProxyHosts");
}
return true;
case "httpRetryEnabled":
httpRetryEnabled = value.isTrue();
return true;
case "localAddress":
localAddress = value.getAsString();
return true;
Expand Down

0 comments on commit a213ae6

Please sign in to comment.