We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29963fa commit 492874dCopy full SHA for 492874d
mautrix/util/program.py
@@ -217,9 +217,9 @@ async def start(self) -> None:
217
First lifecycle method called inside the asyncio event loop. Extend this if you want more
218
control over startup than just filling startup_actions in the prepare step.
219
"""
220
- await asyncio.gather(*(self.startup_actions or []))
221
if self._automatic_prometheus:
222
self.start_prometheus()
+ await asyncio.gather(*(self.startup_actions or []))
223
224
def prepare_stop(self) -> None:
225
0 commit comments