From 6db2d8bc5babc8e92354b07e31b0444e5a7eb794 Mon Sep 17 00:00:00 2001 From: Neljon Lusterio Date: Fri, 9 Aug 2024 01:44:48 +0800 Subject: [PATCH] Added stepFunctionsEndpoint option --- lib/starter.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/starter.js b/lib/starter.js index c9a3683..2b33f39 100644 --- a/lib/starter.js +++ b/lib/starter.js @@ -64,6 +64,11 @@ const start = options => { args.push(options.waitTimeScale); } + if (options.stepFunctionsEndpoint) { + args.push('-stepFunctionsEndpoint'); + args.push(options.stepFunctionsEndpoint); + } + const child = spawn('java', args, { cwd: options.path, env: process.env