From 0dacf3be0fe2eb7cab859f5a2658312b16aafdf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillaume=20Corr=C3=A9?= Date: Wed, 13 Nov 2024 12:38:56 +0100 Subject: [PATCH] fix: add missing --add-opens on java.base --- js/cli/src/run.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/js/cli/src/run.ts b/js/cli/src/run.ts index 768c1d8..90190dd 100644 --- a/js/cli/src/run.ts +++ b/js/cli/src/run.ts @@ -29,6 +29,7 @@ export const runSimulation = async (options: RunSimulationOptions): Promise `-D${key}=${value}`), + "--add-opens=java.base/java.lang=ALL-UNNAMED", `-Dgatling.js.bundle.filePath=${options.bundleFile}`, `-Dgatling.js.simulation=${options.simulation}`, ...jitTuningArgs,