我正在编写一个不和谐的机器人并异步运行一个 Quart 服务器。一切都很好,直到出现此错误:
No WebSocket UPGRADE hdr: None
Can "Upgrade" only to "WebSocket".
应用程序/应用程序.py:
from quart import Quart, render_template, redirect, url_for
app = Quart(__name__)
app.route...
主要.py:
from app.app import app
from src.bot import MyBot
...
# MyBot extends discord.ext.commands.Bot
client = MyBot(command_prefix='rr', intents=Intents.all())
...
if __name__ == '__main__':
client.loop.create_task(app.run_task(host="0.0.0.0", debug=False))
client.run(TOKEN)
任何人都可以帮我解决它或至少理解它吗?
PS:我正在使用 replit 来运行我的代码。