We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3163c32 commit 449bb5bCopy full SHA for 449bb5b
core/services/registry.py
@@ -109,7 +109,7 @@ async def run(cls):
109
if isinstance(ret[idx], Exception):
110
ServiceRegistry._log.error(f" => Service {name} NOT started.", exc_info=ret[idx])
111
if isinstance(ret[idx], FatalException):
112
- raise
+ raise ret[idx]
113
else:
114
ServiceRegistry._log.debug(f" => Service {name} started.")
115
ServiceRegistry._log.info("- Services started.")
0 commit comments