Skip to content

Commit 449bb5b

Browse files
committed
BUGFIX:
- ServiceRegistry did not raise correct exception
1 parent 3163c32 commit 449bb5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/services/registry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ async def run(cls):
109109
if isinstance(ret[idx], Exception):
110110
ServiceRegistry._log.error(f" => Service {name} NOT started.", exc_info=ret[idx])
111111
if isinstance(ret[idx], FatalException):
112-
raise
112+
raise ret[idx]
113113
else:
114114
ServiceRegistry._log.debug(f" => Service {name} started.")
115115
ServiceRegistry._log.info("- Services started.")

0 commit comments

Comments
 (0)