Skip to content

Commit

Permalink
Use the configuration file as the everest server job name
Browse files Browse the repository at this point in the history
  • Loading branch information
verveerpj authored and oyvindeide committed Jan 20, 2025
1 parent 936e2cb commit bed9a2c
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 @@ -62,7 +62,7 @@ async def start_server(config: EverestConfig, debug: bool = False) -> Driver:
if debug:
args.append("--debug")
poll_task = asyncio.create_task(driver.poll(), name="poll_task")
await driver.submit(0, "everserver", *args)
await driver.submit(0, "everserver", *args, name=Path(config.config_file).stem)
except FailedSubmit as err:
raise ValueError(f"Failed to submit Everserver with error: {err}") from err
status = await driver.event_queue.get()
Expand Down

0 comments on commit bed9a2c

Please sign in to comment.