我正在尝试实现与 Quart 上运行的 Web 应用程序的不和谐机器人连接。我尝试使用此处发布的解决方案之一,它可以工作一段时间,但大约 24 小时后,应用程序中断返回 asyncio.exceptions.TimeoutError
data = await state.http.send_message(channel.id, content, tts=tts, embed=embed,
File "/path/to/my/venv/lib/python3.9/site-packages/discord/http.py", line 185, in request
async with self.__session.request(method, url, **kwargs) as r:
File "/path/to/my/venv/lib/python3.9/site-packages/aiohttp/client.py", line 1117, in __aenter__
self._resp = await self._coro
File "/path/to/my/venv/lib/python3.9/site-packages/aiohttp/client.py", line 619, in _request
break
File "/path/to/my/venv/lib/python3.9/site-packages/aiohttp/helpers.py", line 656, in __exit__
raise asyncio.TimeoutError from None
asyncio.exceptions.TimeoutError
相关代码:
import discord
import asyncio
from quart import Quart, request, Response
app = Quart(__name__)
client = discord.Client()
@app.before_serving
async def before_serving():
loop = asyncio.get_event_loop()
await client.login(os.getenv('TOKEN'))
loop.create_task(client.connect())
@app.route('/webhook', methods=['POST'])
async def webhook():
...
await channel.send(content, embed=embed)
...
我怎样才能让客户端循环存活超过一天?有没有办法防止客户端会话断开连接,或者我应该定期重新连接它?