Revert "改名"

This reverts commit fdf58326
This commit is contained in:
2022-01-14 16:11:23 +08:00
parent f3d878e21c
commit 61741f926f
+2
View File
@@ -12,6 +12,7 @@ use Kiri\Application;
use Kiri\Exception\ConfigException; use Kiri\Exception\ConfigException;
use Kiri\Server\Events\OnTaskerStart; use Kiri\Server\Events\OnTaskerStart;
use Kiri\Server\Events\OnWorkerStart; use Kiri\Server\Events\OnWorkerStart;
use Kiri\Server\Events\OnProcessStart;
/** /**
* Class DatabasesProviders * Class DatabasesProviders
@@ -28,6 +29,7 @@ class DatabasesProviders extends Providers
public function onImport(Application $application) public function onImport(Application $application)
{ {
$this->eventProvider->on(OnWorkerStart::class, [$this, 'createPool']); $this->eventProvider->on(OnWorkerStart::class, [$this, 'createPool']);
$this->eventProvider->on(OnProcessStart::class, [$this, 'createPool']);
$this->eventProvider->on(OnTaskerStart::class, [$this, 'createPool']); $this->eventProvider->on(OnTaskerStart::class, [$this, 'createPool']);
} }