From 71c0a0c7cf67c413e6ad03121ab2216d0923b4b7 Mon Sep 17 00:00:00 2001 From: Dave Conway-Jones Date: Sun, 28 Aug 2016 11:37:51 +0100 Subject: [PATCH] add info to daemon node to point out python unbuffered --- utility/daemon/daemon.html | 4 +++- utility/daemon/package.json | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) 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.