From d642d28787531f70019644fa4557d49047534341 Mon Sep 17 00:00:00 2001 From: Andrew Broberg Date: Thu, 21 Aug 2025 13:00:21 +1000 Subject: [PATCH] fix: unable to use php binary with space in the path TemporalTestingWorker Same fixed as #62 but for TemporalTestingWorker as well --- src/Testing/TemporalTestingWorker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Testing/TemporalTestingWorker.php b/src/Testing/TemporalTestingWorker.php index 7dfe284..4a08bc2 100644 --- a/src/Testing/TemporalTestingWorker.php +++ b/src/Testing/TemporalTestingWorker.php @@ -72,7 +72,7 @@ protected function startTemporalWorker(): void command: [ $this->roadRunnerBinary->binaryPath(), ...['-o', sprintf('version=%s', $this->roadRunnerBinary->configVersion())], - ...['-o', sprintf('server.command=%s %s', (new PhpExecutableFinder)->find(), $this->findWorkerPath())], + ...['-o', sprintf('server.command=%s,%s', (new PhpExecutableFinder)->find(), $this->findWorkerPath())], ...['-o', sprintf('temporal.address=%s', config('temporal.address'))], ...['-o', sprintf('temporal.namespace=%s', config('temporal.namespace'))], ...(is_string($clientKey) && is_string($clientCert))