Help with the wait node to batch process messages

Good morning everyone! I have a question and I hope you can help me. How can I make the system wait before sending a response when messages come in, just like in the beginning of the video? I’ve already set up the wait node, but the system is still replying immediately to each message, without waiting if the user sends additional messages. Thank you very much for your attention and support.

hello @Adrian_Fernandez

Please, share the workflow.

You can select all nodes with ctrl+a, copy it with ctrl+c. Then past the content here after pressing button </> with ctrl+v.

The default wait node pauses the workflow but does not queue multiple messages in one session. so each triggers a new execution. I think if you need a delay you would need to store the message somewhere either redis or a temp file or n8n builtin data stores with timestamp and then set a wait timer which will kick in every specified interval to check if there is any more new messages coming in. if not then end the execution

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.