1
0
forked from bot/app

🐛 Linux下创建子进程出错的问题 fork -> spawn

This commit is contained in:
2024-08-18 11:51:18 +08:00
2 changed files with 7 additions and 6 deletions

View File

@ -8,7 +8,7 @@ Copyright (C) 2020-2024 LiteyukiStudio. All Rights Reserved
@File : manager.py
@Software: PyCharm
"""
import multiprocessing
import threading
from multiprocessing import Process
from typing import Any, Callable, TYPE_CHECKING, TypeAlias
@ -33,6 +33,7 @@ TIMEOUT = 10
__all__ = [
"ProcessManager"
]
multiprocessing.set_start_method("spawn", force=True)
class ChannelDeliver: