We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90e0ec2 commit f61f12cCopy full SHA for f61f12c
src/AsyncTaskStatus.php
@@ -119,7 +119,7 @@ private function findTaskRunnerProcess(): bool
119
// we can assume we are in cmd, but wcim in cmd is deprecated, and the replacement gcim requires powershell
120
$results = [];
121
$fullCmd = "powershell echo \"\"(gcim Win32_Process -Filter \\\"CommandLine LIKE '%id=\'$encodedTaskID\'%'\\\").ProcessId\"\"";
122
- \Illuminate\Support\Facades\Log::info($fullCmd);
+ // \Illuminate\Support\Facades\Log::info($fullCmd);
123
exec("powershell echo \"\"(gcim Win32_Process -Filter \\\"CommandLine LIKE '%id=\'$encodedTaskID\'%'\\\").ProcessId\"\"", $results);
124
// will output many lines, each line being a PID
125
foreach ($results as $candidatePID) {
0 commit comments