summaryrefslogtreecommitdiff
path: root/services/strategy-engine/src
diff options
context:
space:
mode:
Diffstat (limited to 'services/strategy-engine/src')
-rw-r--r--services/strategy-engine/src/strategy_engine/main.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/services/strategy-engine/src/strategy_engine/main.py b/services/strategy-engine/src/strategy_engine/main.py
index 1ccef6e..4549f70 100644
--- a/services/strategy-engine/src/strategy_engine/main.py
+++ b/services/strategy-engine/src/strategy_engine/main.py
@@ -52,7 +52,9 @@ async def run() -> None:
engine = StrategyEngine(broker=broker, strategies=strategies)
health = HealthCheckServer(
- "strategy-engine", port=config.health_port + HEALTH_PORT_OFFSET, auth_token=config.metrics_auth_token
+ "strategy-engine",
+ port=config.health_port + HEALTH_PORT_OFFSET,
+ auth_token=config.metrics_auth_token,
)
health.register_check("redis", broker.ping)
await health.start()