Merge pull request #1663 from gireeshp/fix-1662-logs-minor-spelling-mistake

Fix for #1662. Corrected the spelling in the logs.
This commit is contained in:
Torsten Dittmann
2022-06-03 12:35:06 +02:00
committed by GitHub
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -211,7 +211,6 @@ $http->on('start', function (Server $http) use ($payloadSize, $register) {
});
Console::success('Server started successfully (max payload is ' . number_format($payloadSize) . ' bytes)');
Console::info("Master pid {$http->master_pid}, manager pid {$http->manager_pid}");
// listen ctrl + c
+1 -1
View File
@@ -187,7 +187,7 @@ $server->onStart(function () use ($stats, $register, $containerId, &$statsDocume
});
$server->onWorkerStart(function (int $workerId) use ($server, $register, $stats, $realtime, $logError) {
Console::success('Worker ' . $workerId . ' started succefully');
Console::success('Worker ' . $workerId . ' started successfully');
$attempts = 0;
$start = time();