We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 609de00 commit 3ae08e9Copy full SHA for 3ae08e9
core/thread.py
@@ -74,7 +74,7 @@ def __eq__(self, other):
74
async def wait_until_ready(self) -> None:
75
"""Blocks execution until the thread is fully set up."""
76
# timeout after 30 seconds
77
- task = self.bot.loop.create_task(asyncio.wait_for(self._ready_event.wait(), timeout=25))
+ task = self.bot.loop.create_task(asyncio.wait_for(self._ready_event.wait(), timeout=self.bot.config["confirm_thread_creation_timeout"]+5))
78
self.wait_tasks.append(task)
79
try:
80
await task
0 commit comments