This commit is contained in:
2020-09-07 15:55:55 +08:00
parent 6493fc9450
commit c7abbae458
2 changed files with 7 additions and 7 deletions
+6 -6
View File
@@ -28,12 +28,12 @@ class OnWorkerError extends Callback
if (!Config::has('email')) {
return;
}
Coroutine::create([$this,'system_mail'],print_r([
'$worker_pid' => $worker_pid,
'$worker_id' => $worker_id,
'$exit_code' => $exit_code,
'$signal' => $signal,
], true));
// Coroutine::create([$this,'system_mail'],print_r([
// '$worker_pid' => $worker_pid,
// '$worker_id' => $worker_id,
// '$exit_code' => $exit_code,
// '$signal' => $signal,
// ], true));
}
}