1
0
Fork 0
mirror of synced 2024-09-29 08:51:28 +13:00

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
commit f055c23e9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

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

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();