Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for #1662. Corrected the spelling in the logs. #1663

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion app/http.php
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,6 @@
});

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
Expand Down
2 changes: 1 addition & 1 deletion app/realtime.php
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ function () use ($register, $db, $redis) {
});

$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();
Expand Down