mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
Fix for #1662. Corrected the spelling in the logs.
This commit is contained in:
parent
41b263dc1f
commit
8b170cbbd2
2 changed files with 4 additions and 4 deletions
|
|
@ -30,7 +30,7 @@ $http
|
|||
;
|
||||
|
||||
$http->on('WorkerStart', function($serv, $workerId) {
|
||||
Console::success('Worker '.++$workerId.' started succefully');
|
||||
Console::success('Worker '.++$workerId.' started successfully');
|
||||
});
|
||||
|
||||
$http->on('BeforeReload', function($serv, $workerId) {
|
||||
|
|
@ -43,7 +43,7 @@ $http->on('AfterReload', function($serv, $workerId) {
|
|||
|
||||
$http->on('start', function (Server $http) use ($payloadSize) {
|
||||
|
||||
Console::success('Server started succefully (max payload is '.number_format($payloadSize).' bytes)');
|
||||
Console::success('Server started successfully (max payload is '.number_format($payloadSize).' bytes)');
|
||||
|
||||
Console::info("Master pid {$http->master_pid}, manager pid {$http->manager_pid}");
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ $adapter->setPackageMaxLength(64000); // Default maximum Package Size (64kb)
|
|||
$server = new Server($adapter);
|
||||
|
||||
$server->onStart(function () use ($stats, $register, $containerId, &$documentId) {
|
||||
Console::success('Server started succefully');
|
||||
Console::success('Server started successfully');
|
||||
|
||||
$getConsoleDb = function () use ($register) {
|
||||
$db = $register->get('dbPool')->get();
|
||||
|
|
@ -164,7 +164,7 @@ $server->onStart(function () use ($stats, $register, $containerId, &$documentId)
|
|||
});
|
||||
|
||||
$server->onWorkerStart(function (int $workerId) use ($server, $register, $stats, $realtime) {
|
||||
Console::success('Worker ' . $workerId . ' started succefully');
|
||||
Console::success('Worker ' . $workerId . ' started successfully');
|
||||
|
||||
$attempts = 0;
|
||||
$start = time();
|
||||
|
|
|
|||
Loading…
Reference in a new issue