Fixed the ConfigFetcherProcess will exit after just started

This commit is contained in:
huangzhhui 2021-06-27 06:32:31 +08:00
parent 8a205776fc
commit f35ca2fb92

View File

@ -74,5 +74,8 @@ class ConfigFetcherProcess extends AbstractProcess
'setServer' => $this->server,
]);
$instance->createMessageFetcherLoop(Mode::PROCESS);
while (true) {
sleep(1);
}
}
}