This commit is contained in:
2021-04-16 15:09:50 +08:00
parent edec297422
commit 525b149e02
+2 -5
View File
@@ -64,7 +64,7 @@ class OnWorkerStart extends Callback
*/ */
public function onTask(Server $server, Annotation $annotation) public function onTask(Server $server, Annotation $annotation)
{ {
$annotation->runtime(MODEL_PATH); $annotation->runtime(directory('app'));
putenv('environmental=' . Snowflake::TASK); putenv('environmental=' . Snowflake::TASK);
@@ -85,10 +85,7 @@ class OnWorkerStart extends Callback
{ {
try { try {
$time = microtime(true); $time = microtime(true);
$annotation->runtime(CONTROLLER_PATH); $annotation->runtime(directory('app'));
$this->debug('load controller time .' . (microtime(true) - $time));
$annotation->runtime(directory('app'), CONTROLLER_PATH);
name($server->worker_pid, 'Worker#' . $server->worker_id); name($server->worker_pid, 'Worker#' . $server->worker_id);