當我webman-admin 安裝應(yīng)用后執(zhí)行重啟webman:reloadWebman()
就會報錯 整個錯誤似乎是隊列的錯誤信息,有沒有影響 或者是否有辦法解決
#重啟框架
function reloadWebman() {
if (function_exists('posix_kill')) {
try {
posix_kill(posix_getppid(), SIGUSR1);
return true;
} catch (Throwable $e) {}
} else {
Timer::add(1, function () {
Worker::stopAll();
});
}
return false;
}
#暫停文件監(jiān)控
function pauseFileMonitor() {
if (method_exists(Monitor::class, 'pause')) {
Monitor::pause();
}
}
#重啟文件監(jiān)控
function resumeFileMonitor() {
if (method_exists(Monitor::class, 'resume')) {
Monitor::resume();
}
}
Workerman[webman] reloading
worker[plugin.webman.redis-queue.consumer:2670136] exit with status 139
worker[plugin.webman.redis-queue.consumer:2670139] exit with status 139
worker[plugin.webman.redis-queue.consumer:2670142] exit with status 139
worker[plugin.webman.redis-queue.consumer:2670145] exit with status 139
worker[plugin.webman.redis-queue.consumer:2670148] exit with status 139
worker[plugin.webman.redis-queue.consumer:2670151] exit with status 139
worker[plugin.webman.redis-queue.consumer:2670154] exit with status 139
worker[plugin.webman.redis-queue.consumer:2670157] exit with status 139
worker[plugin.webman.redis-queue.consumer:2670160] exit with status 139
worker[plugin.webman.redis-queue.consumer:2670163] exit with status 139
worker[plugin.webman.redis-queue.block:2670166] exit with status 139
worker[plugin.webman.redis-queue.block:2670169] exit with status 139
worker[plugin.webman.redis-queue.block:2670172] exit with status 139
worker[plugin.webman.redis-queue.block:2670175] exit with status 139
worker[plugin.webman.redis-queue.notify:2670178] exit with status 139
worker[plugin.webman.redis-queue.notify:2670181] exit with status 139
worker[plugin.webman.redis-queue.notify:2670184] exit with status 139
worker[plugin.webman.redis-queue.notify:2670187] exit with status 139
worker[plugin.webman.redis-queue.notify:2670190] exit with status 139
worker[plugin.webman.redis-queue.notify:2670193] exit with status 139
worker[plugin.webman.redis-queue.notify:2670196] exit with status 139
centos8.2 linux