This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch 2.13.x in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit e75f01b52af9b63a2223766f74041a791e7a6c45 Author: aldettinger <[email protected]> AuthorDate: Fri Oct 28 09:42:25 2022 +0200 perf-regression: remove workaround and final fix Java 17 issue #4031 --- tooling/perf-regression/cq-perf-regression-sample-base/pom.xml | 2 +- .../org/apache/camel/quarkus/performance/regression/MvnwCmdHelper.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tooling/perf-regression/cq-perf-regression-sample-base/pom.xml b/tooling/perf-regression/cq-perf-regression-sample-base/pom.xml index 2725a917f4..917d8a2abe 100644 --- a/tooling/perf-regression/cq-perf-regression-sample-base/pom.xml +++ b/tooling/perf-regression/cq-perf-regression-sample-base/pom.xml @@ -187,7 +187,7 @@ <plugin> <groupId>io.hyperfoil</groupId> <artifactId>hyperfoil-maven-plugin</artifactId> - <version>0.21</version> + <version>0.22</version> <!-- Bound to integration-test phase by default --> <configuration> <yaml>cq-perf-regression-scenario.hf.yaml</yaml> diff --git a/tooling/perf-regression/src/main/java/org/apache/camel/quarkus/performance/regression/MvnwCmdHelper.java b/tooling/perf-regression/src/main/java/org/apache/camel/quarkus/performance/regression/MvnwCmdHelper.java index 380d7494e6..d7e3f7a4f4 100644 --- a/tooling/perf-regression/src/main/java/org/apache/camel/quarkus/performance/regression/MvnwCmdHelper.java +++ b/tooling/perf-regression/src/main/java/org/apache/camel/quarkus/performance/regression/MvnwCmdHelper.java @@ -68,7 +68,7 @@ public class MvnwCmdHelper { Map<String, String> environment = EnvironmentUtils.getProcEnvironment(); - String newMavenOpts = "-Duser.language=en -Duser.country=US --add-opens java.base/java.lang=ALL-UNNAMED"; + String newMavenOpts = "-Duser.language=en -Duser.country=US"; if (environment.containsKey("MAVEN_OPTS")) { String currentMavenOpts = environment.get("MAVEN_OPTS"); LOGGER.debugf("MAVEN_OPTS is already set up in the main process with value: %s", currentMavenOpts);
