node-red-contrib-queue-gate
node-red-contrib-queue-gate copied to clipboard
A Node-RED node for controlling message flow (with queueing).
I'll see if I can come up with a PR to fix it https://discourse.nodered.org/t/cant-seem-to-enable-file-context-storage/82389
Hi I hadn't used the node for a while and I got mentally confused as to what flush did - I just pictured all the messages being flushed away down...
Hi @drmibell. Just wanted to let you know here if you are not watching (https://discourse.nodered.org/). Please have look at this. [queue gate is unable to store live data on context...
I've added a new control command `filter` This allows the user to remove specific messages from the queue, it takes a path to the message property in msg.filter. The use...
in section "Save Most Recent Message" of node documentation, the example is missing "Keep Newest Messages" feature enabled. It results in returning oldest message instead of most recent. with regards
Issue is at line 129 at **queue.length > 0** : ``` case node.triggerCmd: if (state === 'queueing') { // dequeue if (queue.length > 0) { ``` If the very first...