Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/drunc/process_manager/process_manager_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,9 @@ def _build_boot_request(
data_path = app.get("data_path")
env["DUNE_DAQ_BASE_RELEASE"] = os.getenv("DUNE_DAQ_BASE_RELEASE")
env["SPACK_RELEASES_DIR"] = os.getenv("SPACK_RELEASES_DIR")
# Some edge cases throw issues with DISPLAY being set, so we remove it from the
# environment
env.pop('DISPLAY', None)
tree_id = app["tree_id"]

# The following line is required to provide an independent method of injecting
Expand Down
5 changes: 1 addition & 4 deletions src/drunc/processes/ssh_process_lifetime_manager_shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,10 +442,7 @@ def start_process(self, uuid: str, boot_request: BootRequest) -> None:
for exe_arg in boot_request.process_description.executable_and_arguments:
cmd += exe_arg.exec
for arg in exe_arg.args:
if arg.endswith("daq_app_rte.sh"):
cmd += f" {os.getenv('DBT_AREA_ROOT')}/install/daq_app_rte.sh"
else:
cmd += f" {arg}"
cmd += f" {arg}"
cmd += ";"

# Remove trailing semicolon if present
Expand Down
Loading