From 9c3454fa5aa1a5ca656015430f2275033b11c165 Mon Sep 17 00:00:00 2001 From: Nils <> Date: Fri, 10 Jul 2020 20:50:37 +0200 Subject: [PATCH] comments --- engine/nsmservercontrol.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/engine/nsmservercontrol.py b/engine/nsmservercontrol.py index 3a0164a..e2b16c7 100644 --- a/engine/nsmservercontrol.py +++ b/engine/nsmservercontrol.py @@ -573,6 +573,10 @@ class NsmServerControl(object): logger.info(f"Got start-session as command line parameter. Fowarding to nsmd command line: {startupSession}") arguments += ["--load-session", startupSession] + #nsmd allows all executables in $PATH. For technical reasons our GUI extends this PATH before we start the server. + #This is a convenience service for fellow developers, that does not belong in the server control. + #However, if you wonder why there are are more applications from unknown PATHs check qtgui/settings.py + self.ourOwnServer = subprocess.Popen(arguments)