Feature: 跳过部分非必要的 task group 创建 (#3095)

This commit is contained in:
Ju4tCode
2024-10-31 12:47:29 +08:00
committed by GitHub
parent 7b136548a9
commit 15c5464069
2 changed files with 18 additions and 6 deletions

View File

@ -158,6 +158,9 @@ class Driver(abc.ABC):
raise RuntimeError(f"Duplicate bot connection with id {bot.self_id}")
self._bots[bot.self_id] = bot
if not self._bot_connection_hook:
return
def handle_exception(exc_group: BaseExceptionGroup) -> None:
for exc in flatten_exception_group(exc_group):
logger.opt(colors=True, exception=exc).error(
@ -186,6 +189,9 @@ class Driver(abc.ABC):
if bot.self_id in self._bots:
del self._bots[bot.self_id]
if not self._bot_disconnection_hook:
return
def handle_exception(exc_group: BaseExceptionGroup) -> None:
for exc in flatten_exception_group(exc_group):
logger.opt(colors=True, exception=exc).error(