diff --git a/bench/utils/system.py b/bench/utils/system.py index 3ba632e88..0bb68a339 100644 --- a/bench/utils/system.py +++ b/bench/utils/system.py @@ -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)