Skip to content

Commit

Permalink
related to discussion in #2474
Browse files Browse the repository at this point in the history
  • Loading branch information
ptrthomas committed Feb 18, 2024
1 parent 970c7d5 commit c5af90b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions karate-core/src/main/java/com/intuit/karate/Runner.java
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,9 @@ public Results parallel(int threadCount) {
Integer debugPort = getDebugPort();
if (debugPort != null && !debugMode) {
String[] args = getDebugArgs(debugPort);
if (systemProperties != null) {
systemProperties.forEach((k, v) -> System.setProperty(k, v));
}
return Main.startDebugServer(args);
}
Suite suite = new Suite(this);
Expand Down

0 comments on commit c5af90b

Please sign in to comment.