Skip to content

Commit

Permalink
Fix bug where abs path could not be logged
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindeide committed Nov 13, 2024
1 parent d32d419 commit 9c03428
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/everest/detached/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ async def start_server(config: EverestConfig, debug: bool = False) -> Driver:

driver = create_driver(get_server_queue_options(config))
try:
args = ["--config-file", config.config_file]
args = ["--config-file", str(config.config_path)]
if debug:
args.append("--debug")
await driver.submit(0, "everserver", *args)
Expand Down

0 comments on commit 9c03428

Please sign in to comment.