Skip to content

Commit

Permalink
Merge pull request karatelabs#2433 from ksola/develop
Browse files Browse the repository at this point in the history
2431 httpRetryEnabled feature (2409) is inaccessible as it has not be…
  • Loading branch information
ptrthomas committed Nov 3, 2023
2 parents 54fbeb3 + 300db2f commit ed0a777
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 ed0a777

Please sign in to comment.