diff --git a/app/Actions/RemoteProcess/RunRemoteProcess.php b/app/Actions/RemoteProcess/RunRemoteProcess.php index 038b681a8..fbd62df91 100644 --- a/app/Actions/RemoteProcess/RunRemoteProcess.php +++ b/app/Actions/RemoteProcess/RunRemoteProcess.php @@ -41,6 +41,9 @@ class RunRemoteProcess public function __invoke(): ProcessResult { + $this->activity->properties = $this->activity->properties->merge([ + 'status' => ProcessStatus::IN_PROGRESS, + ]); $this->timeStart = hrtime(true); $processResult = Process::run($this->getCommand(), $this->handleOutput(...));