mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-17 22:10:29 +00:00
Remove redundant comments in worker process handler
Cleaned up unnecessary comments in the message handler for process restart and shutdown signals to improve code readability.
This commit is contained in:
parent
9ba6b2ed40
commit
d1abf788a5
@ -252,14 +252,11 @@ async function startWorkerProcess (): Promise<void> {
|
|||||||
processManager.onParentMessage((msg: unknown) => {
|
processManager.onParentMessage((msg: unknown) => {
|
||||||
if (typeof msg === 'object' && msg !== null && 'type' in msg) {
|
if (typeof msg === 'object' && msg !== null && 'type' in msg) {
|
||||||
if (msg.type === 'restart-prepare') {
|
if (msg.type === 'restart-prepare') {
|
||||||
// 收到重启准备信号,主动退出
|
|
||||||
logger.log(`[NapCat] [${processType}] 收到重启准备信号,正在主动退出...`);
|
logger.log(`[NapCat] [${processType}] 收到重启准备信号,正在主动退出...`);
|
||||||
// 给一点时间让日志输出
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
process.exit(0);
|
process.exit(0);
|
||||||
}, 100);
|
}, 100);
|
||||||
} else if (msg.type === 'shutdown') {
|
} else if (msg.type === 'shutdown') {
|
||||||
// 收到强制关闭信号
|
|
||||||
logger.log(`[NapCat] [${processType}] 收到关闭信号,正在退出...`);
|
logger.log(`[NapCat] [${processType}] 收到关闭信号,正在退出...`);
|
||||||
process.exit(0);
|
process.exit(0);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user