Say I have this flow - as an example:
[{"id":"20773d9f.d36e6a","type":"inject","z":"68e3655f.b606b4","name":"Normal thing","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":1850,"y":1500,"wires":[["f82eae40.7b13d8"]]},{"id":"f82eae40.7b13d8","type":"trigger","z":"68e3655f.b606b4","name":"Nominal time","op1":"1","op2":"0","op1type":"str","op2type":"str","duration":"20","extend":false,"overrideDelay":false,"units":"s","reset":"","bytopic":"all","topic":"topic","outputs":1,"x":2040,"y":1500,"wires":[["9d77928.108d9f"]]},{"id":"9d77928.108d9f","type":"debug","z":"68e3655f.b606b4","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":2230,"y":1500,"wires":[]},{"id":"dd881de1.7049e8","type":"inject","z":"68e3655f.b606b4","name":"\"Abort\"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"(unknown)","payloadType":"str","x":1840,"y":1580,"wires":[["f82eae40.7b13d8"]]}]
The idea being that "Normal thing" happens.
The first message is sent and a time period is then waited before the second signal.
I want to stop waiting and get the second signal sent.
msg.reset
won't work.
Is there a solution?
Sorry if this has been asked before - and even more so if I asked it.
Thanks.