Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhsamuel committed Nov 18, 2023
1 parent d126947 commit 0fa8d6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/apsis/apsis.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ def __init__(self, cfg, jobs, db):
min_timestamp = now() - lookback
self.run_store = RunStore(db, min_timestamp=min_timestamp)

log.info("starting procstar server")
procstar_cfg = cfg.get("procstar", {}).get("agent", {})
if procstar_cfg.get("enable", False):
log.info("starting procstar server")
self.__procstar_task = asyncio.ensure_future(
start_server(procstar_cfg)
)
Expand Down

0 comments on commit 0fa8d6f

Please sign in to comment.