我遇到了一个问题。每当用户在我的discord服务器上写聊天消息时,我都会运行一个任务-它叫做on_message
。所以在这种情况下,我的机器人有很多事情要做,我经常会收到这样的错误:
Task was destroyed but it is pending!
task: <Task pending name='pycord: on_message' coro=<Client._run_event() done, defined at /Bots/gift-bot/discord/client.py:374> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f68a7bdfc10>()]>>
所以我想如果我想修复这个问题,我需要加速我的代码。但是很遗憾,我不知道我该怎么做来修复这个错误。
**编辑:**我整合了计时,打印出来的内容如下:
Task was destroyed but it is pending!
task: <Task pending name='pycord: on_message' coro=<Client._run_event() done, defined at /Bots/gift-bot/discord/client.py:374> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f01063f98e0>()]>>
2 if checks done - 7.867813110351562e-06
5 if checks done - 0.0061550140380859375
mysql checks done - 0.010785341262817383
task done - 0.13075661659240723
2 if checks done - 8.344650268554688e-06
5 if checks done - 0.011545896530151367
mysql checks done - 0.02138519287109375
task done - 0.11132025718688965
2 if checks done - 2.0503997802734375e-05
5 if checks done - 0.008122920989990234
mysql checks done - 0.012276411056518555
2 if checks done - 1.0728836059570312e-05
5 if checks done - 0.014346837997436523
mysql checks done - 0.040288448333740234
task done - 0.12520265579223633
2 if checks done - 1.0728836059570312e-05
5 if checks done - 0.0077972412109375
mysql checks done - 0.013320684432983398
task done - 0.1502058506011963
task done - 0.10663175582885742
2 if checks done - 9.775161743164062e-06
5 if checks done - 0.006486177444458008
mysql checks done - 0.011229515075683594
Task was destroyed but it is pending!
task: <Task pending name='pycord: on_message' coro=<Client._run_event() done, defined at /Bots/gift-bot/discord/client.py:374> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f010609a9d0>()]>>
2 if checks done - 6.67572021484375e-06
5 if checks done - 0.0049741268157958984
mysql checks done - 0.008575677871704102
task done - 0.10633635520935059
这是集成时序的代码:
@commands.Cog.listener("on_message")
async def on_message(self, message):
start = time.time()
# Check ob Nachricht gezählt werden kann
if message.author.bot:
return
if message.type != discord.MessageType.default:
return
print(f"2 if checks done - {time.time() - start}")
if isinstance(message.channel, discord.channel.DMChannel):
return await message.reply(f'Hey {message.author.name}!\nLeider bin ich der falsche Ansprechpartner, falls du Hilfe suchst.. <:pepe_hands:705896495601287320>\nBetrete den https://discord.gg/deutschland Bl4cklist-Discord und sende unserem Support-Bot <@671421220566204446> (`Bl4cklist🔥Support#7717`) eine Private-Nachricht, damit sich unser Support-Team um dein Problem so schnell es geht kümmern kann. <:pepe_love:759741232443949107>')
# ENTFERNEN AM 30. APRIL
prefix_now = await get_prefix(message)
if message.content.startswith(str(prefix_now)):
try:
await message.reply("› <a:alarm:769215249261789185> - **UMSTIEG AUF SLASH-COMMANDS:** Ab **jetzt** laufen alle Befehle dieses Bots auf `/` - um Leistung zu sparen und die Erfahrung zu verbessern. Nutze `/help` um eine Befehlsliste zu sehen.")
except discord.Forbidden:
pass
return
if self.client.user in message.mentions:
response = choice([
"Mit mir kann man die coolsten Gewinnspiele starten! <a:gift:843914342835421185>",
'Wird Zeit jemanden den Tag zu versüßen! <:smile:774755282618286101>',
"Wer nicht auf diesem Server ist, hat die Kontrolle über sein Leben verloren! <a:lach_blue2:803693710490861608>",
"Wann startet endlich ein neues Gewinnspiel? <:whut:848347703217487912>",
"Ich bin der BESTE Gewinnspiel-Bot - Wer was anderes sagt, lügt! <:wyldekatze:842157727169773608>"
])
try:
await message.reply(f"{response} (Mein Präfix: `/`)", mention_author=False)
except (discord.Forbidden, discord.HTTPException, discord.NotFound):
pass
return
print(f"5 if checks done - {time.time() - start}")
# Cooldown
#self.member_cooldown_list = [i for i in self.member_cooldown_list if i[1] + self.cooldown_val > int(time.time())]
#member_index = next((i for i, v in enumerate(self.member_cooldown_list) if v[0] == message.author.id), None)
#if member_index is not None:
# if self.member_cooldown_list[member_index][1] + self.cooldown_val > int(time.time()):
# return
#self.member_cooldown_list.append((message.author.id, int(time.time())))
# Rollen-Check (Bonus/Ignore)
count = 1
mydb = await getConnection()
mycursor = await mydb.cursor()
await mycursor.execute("SELECT ignore_role_id, bonus_role_id FROM guild_role_settings WHERE guild_id = %s", (message.author.guild.id,))
in_database = await mycursor.fetchone()
if in_database:
if in_database[0] is not None:
role_list = in_database[0].split(" ")
for roleid in role_list:
try:
int(roleid)
except ValueError:
continue
role = message.author.guild.get_role(int(roleid))
if role is None:
continue
if role in message.author.roles:
await mycursor.close()
mydb.close()
return
if in_database[1] is not None:
role_list = in_database[1].split(" ")
for roleid in role_list:
try:
int(roleid)
except ValueError:
continue
role = message.author.guild.get_role(int(roleid))
if role is None:
continue
if role in message.author.roles:
count += 1
# Kanal-Check (Bonus/Ignore)
await mycursor.execute("SELECT ignore_channel_id FROM guild_channel_settings WHERE guild_id = %s", (message.author.guild.id,))
in_database1 = await mycursor.fetchone()
if in_database1:
if in_database1[0] is not None:
channel_list = in_database1[0].split(" ")
for channelid in channel_list:
try:
int(channelid)
except ValueError:
continue
if int(message.channel.id) == int(channelid):
await mycursor.close()
mydb.close()
return
print(f"mysql checks done - {time.time() - start}")
# In Datenbank eintragen
await mycursor.execute("SELECT * FROM guild_message_count WHERE guild_id = %s AND user_id = %s",
(message.author.guild.id, message.author.id))
in_database2 = await mycursor.fetchone()
if in_database2:
await mycursor.execute(
"UPDATE guild_message_count SET user_id = %s, message_count = message_count + %s WHERE guild_id = %s AND user_id = %s",
(message.author.id, count, message.author.guild.id, message.author.id))
else:
await mycursor.execute(
"INSERT INTO guild_message_count (user_id, message_count, guild_id) VALUES (%s, %s, %s)",
(message.author.id, count, message.author.guild.id))
await mydb.commit()
await mycursor.close()
mydb.close()
print(f"task done - {time.time() - start}")
如果我尝试使用asyncio.run(client.start('token'))
启动我的机器人,我会多次收到此错误:
Ignoring exception in on_guild_channel_delete
Traceback (most recent call last):
File "/Bots/gift-bot/discord/client.py", line 382, in _run_event
await coro(*args, **kwargs)
File "/Bots/gift-bot/cogs/misc_events.py", line 738, in on_guild_channel_delete
await self.client.wait_until_ready()
File "/Bots/gift-bot/discord/client.py", line 978, in wait_until_ready
await self._ready.wait()
File "/usr/local/lib/python3.9/asyncio/locks.py", line 226, in wait
await fut
RuntimeError: Task <Task pending name='pycord: on_guild_channel_delete' coro=<Client._run_event() running at /Bots/gift-bot/discord/client.py:382>> got Future <Future pending> attached to a different loop
我在一个Debian 10 vServer上使用的是Python3.9和pycord2.0.0b5。
4条答案
按热度按时间px9o7tmv1#
await
表达式阻塞了包含它的协程,直到await
艾德waitable返回。这阻碍了协程的进程。但是await
在协程中是必需的,它将控制权交还给事件循环,以便其他协程可以继续。太多的
await
可能会有问题,它只会使进展缓慢。我通过将
on_message
协程方法分解为子任务来重构它。我用
on_message
方法的一部分代码创建了两个私有异步方法,以使进程并发。重构后的方法可以独立于on_message
方法进行,为了实现这一点,我从两个新的协程中创建了两个任务,asyncio.create_tasks
调度要运行的任务,而不需要await
。一旦on_message
在任务创建之后将控制权交还给任何await
上的事件循环,这些任务就可以运行。我没有运行代码。这是最好的努力。你必须尝试移动
await
的任务块。并运行它与client.run
,以避免 * 得到未来附加到一个不同的循环 * 错误。vwoqyblh2#
我遇到了一个错误,同样的错误,然后我发现这个https://github.com/python/cpython/pull/29163:当没有强引用时,任务将被垃圾收集,这可能对您有用。
nbnkbykc3#
此错误可能是由于事件循环关闭不当造成的。
此代码演示不正确的关机。
在这里,当任务
t1
完成时,loop.run_until_complete
方法一返回,循环就关闭了,但是任务t2
还没有完成,这就产生了错误。产出;
正确关机。
这里,第二个
loop.run_until_complete
在循环关闭之前等待一组挂起的任务。最简单的方法是使用
asyncio.run
,它可以正确地关闭循环。对于
pycord
的问题,现在尝试这个解决方案,其中client
是discord.Client
的示例,也就是你的类,我们创建一个科罗并将其传递给asyncio.run
,而不是调用client.run
。7kjnsjlb4#
IODKU可以消除单独的
SELECT
:您是否使用autocommit = ON?Transactions?(这个选择可能会影响性能;请提供详细信息,以便我们提供建议。)