diff --git a/utility/daemon/daemon.html b/utility/daemon/daemon.html index 463ae3ad..9821f5df 100644 --- a/utility/daemon/daemon.html +++ b/utility/daemon/daemon.html @@ -55,7 +55,9 @@
Calls out to a long running system command. Sends msg.payload
to stdin of the process.
Provides 3 outputs... stdout, stderr, and return code , from the running command.
If the called program stops (i.e. a return code is produced), this node can attempt to restart the command.
-Note : when you stop Node-RED running we may not get a chance to kill the called program so it may remain running. You may have to kill it manually.
+Note : when you stop Node-RED running we may not get a chance to kill the called program so it may remain + running. You may have to kill it manually.
+If running a Python app you may need to use the -u
parameter to stop the output being buffered.