Is it normal in case of 2, Node Status to block the whole flow ?
Basically, if 'text'
has the value null
, the execution of the flow stops at that node.
[{"id":"f00e26a6.ac9408","type":"tab","label":"Message","disabled":false,"info":""},{"id":"fcaa74a0.c1e5f8","type":"inject","z":"f00e26a6.ac9408","name":"GO","topic":"","payload":"","payloadType":"date","repeat":"","crontab":"","once":false,"onceDelay":0.1,"x":250,"y":180,"wires":[["f1c7a59e.89ed7"]]},{"id":"bf141474.1662e8","type":"debug","z":"f00e26a6.ac9408","name":"Debug 1","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","x":660,"y":180,"wires":[]},{"id":"f1c7a59e.89ed7","type":"function","z":"f00e26a6.ac9408","name":"1","func":"msg.payload = null;\n\n\nnode.status({fill:\"green\", shape:\"ring\", text:'Payload : ' + msg.payload});\n\n\n\nreturn msg;","outputs":1,"noerr":0,"x":460,"y":180,"wires":[["bf141474.1662e8"]]},{"id":"db5026d3.e46f9","type":"inject","z":"f00e26a6.ac9408","name":"GO","topic":"","payload":"","payloadType":"date","repeat":"","crontab":"","once":false,"onceDelay":0.1,"x":250,"y":260,"wires":[["72e37519.523bec"]]},{"id":"3583c42e.28e29c","type":"debug","z":"f00e26a6.ac9408","name":"Debug 2","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","x":660,"y":260,"wires":[]},{"id":"72e37519.523bec","type":"function","z":"f00e26a6.ac9408","name":"2","func":"msg.payload = null;\n\nnode.status({fill:\"green\", shape:\"ring\", text:msg.payload});\n\nreturn msg;","outputs":1,"noerr":0,"x":460,"y":260,"wires":[["3583c42e.28e29c"]]}]