Skip to content
Open
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 bench/utils/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,9 @@ def start(no_dev=False, concurrency=None, procfile=None, no_prefix=False, procma
if no_prefix:
command.extend(["--no-prefix"])

# Displaying PId for programme manager Itself. (For now it seems to be Honcho). Seems to be useful for Killing/aborting in VM like scenarios!
# NOTE: os.execv would replace the existing process image, so may need to update following code, if `fork` like systemcall is used in future for running programme manager !
print("program manager path: {} | pid : {}".format(program, os.getpid()))
os.execv(program, command)


Expand Down
Loading