mirror of
http://shenjack.top:5100/shenjack/icalingua-python-bot.git
synced 2024-11-23 12:41:05 +08:00
F | 尝试在新线程里跑?
This commit is contained in:
parent
43a79b3f1c
commit
bc42df2472
|
@ -189,7 +189,7 @@ async def add_message(data: Dict[str, Any]):
|
||||||
|
|
||||||
evals: str = data.get('message').get('content')[2:]
|
evals: str = data.get('message').get('content')[2:]
|
||||||
try:
|
try:
|
||||||
result = await asyncio.wait_for(safe_eval(evals), 5)
|
result = await asyncio.gather(asyncio.to_thread(safe_eval, evals))
|
||||||
except asyncio.TimeoutError:
|
except asyncio.TimeoutError:
|
||||||
result = f'{evals}\n超时'
|
result = f'{evals}\n超时'
|
||||||
reply = ReplyMessage(id=data['message']['_id'])
|
reply = ReplyMessage(id=data['message']['_id'])
|
||||||
|
|
Loading…
Reference in New Issue
Block a user