So i have what i consider to be a very simple situation....
I want to receive data through an http request....try and send it out, and if for some reason it fails, queue so i can send it later. So i thought it made sense to use the node-red-contrib-msg-queue.
The only way i can figure to get it to work is to consider it disconnected when it doesn't get a 200 back?
it doesnt appear to work though....
here is my data
[{"id":"cb279390.d2e71","type":"queue","z":"d1c0b30c.8c2d7","name":"","connected":".*200","connectedType":"re","disconnected":"","disconnectedType":"re","sqlite":"test44","x":500,"y":80,"wires":[["eda4d3ec.97b32"]]}]
Additionally i also have a very simple flow i built to receive and reply to the messages...
[{"id":"dace88dd.8b8a68","type":"tab","label":"Flow 2","disabled":false,"info":""},{"id":"b9d0f067.81a31","type":"http in","z":"dace88dd.8b8a68","name":"","url":"/test3","method":"get","upload":false,"swaggerDoc":"","x":160,"y":180,"wires":[["144940c8.ee412f","33ff2f06.b4709"]]},{"id":"144940c8.ee412f","type":"debug","z":"dace88dd.8b8a68","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","x":310,"y":100,"wires":},{"id":"33ff2f06.b4709","type":"http response","z":"dace88dd.8b8a68","name":"","statusCode":"200","headers":{"data":"Larry"},"x":350,"y":240,"wires":}]
Any assistance would be greatly appreciated...i am just stumped....
Thanks
Larry