Describe the problem/error/question
I seem to be having issues where if there is a wait node with a waiting web form submission and there is another wait node any point after the first wait, the submitted form will be error out. It only seems to be a problem if the time is greater than 30 secs.
Can any one else confirm this is a bug? Or is it something I’m doing.
Kind regards
John
What is the error message (if any)?
Problem loading form.
Please share your workflow
Share the output returned by the last node
Information on your n8n setup
**n8n version: 1.68.1
**Database (default: SQLite):SQLite
**n8n EXECUTIONS_PROCESS setting (default: own, main): default
**Running n8n via (Docker, npm, n8n cloud, desktop app): docker
**Operating system: ubuntu 22.04 LTS
I just did a test with an online trial account in the n8n cloud, and it does the same thing.
Can someone confirm this? I had multiple waits in the workflow of previous versions and had no issues.
ria
December 8, 2024, 3:41am
3
Hi @jthompson
I believe you’ve also posted this on Github, right?
opened 12:11AM - 02 Dec 24 UTC
in linear
### Bug Description
I am having issues where if there is a wait node with a w… aiting web form submission and another wait node at any point after the first wait, the submitted form will be error out. It only seems to be a problem if the time is greater than a couple of mins. This can happen when the next wait node is anywhere in the work flow,
![Screenshot 2024-12-02 110009](https://github.com/user-attachments/assets/2eea9646-ccf5-43ce-a57f-aee9bc4e4e3e)
![Screenshot 2024-12-02 110141](https://github.com/user-attachments/assets/455a5fea-391d-4792-af59-c048c6ee72ff)
workflow
### To Reproduce
```json
{
"meta": {
"instanceId": "ed3af51cecd48fe59bebdcacc84a4cbd2dbb364520979999f83182a202c47661"
},
"nodes": [
{
"parameters": {},
"id": "749f47a9-5164-4320-b6f7-3c6e995bfb33",
"name": "When clicking ‘Test workflow’",
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
400,
320
]
},
{
"parameters": {
"resume": "form",
"formTitle": "Test",
"formDescription": "test",
"formFields": {
"values": [
{
"fieldLabel": "test",
"fieldType": "dropdown",
"fieldOptions": {
"values": [
{
"option": "yes"
}
]
}
}
]
},
"options": {}
},
"id": "bb534254-5b0c-413f-9448-21f75e5da589",
"name": "Wait",
"type": "n8n-nodes-base.wait",
"typeVersion": 1.1,
"position": [
720,
340
],
"webhookId": "5bb50881-b9a3-4e22-a960-f3d19f76795e"
},
{
"parameters": {
"unit": "minutes"
},
"id": "605309c5-6fd3-4744-88cb-7d9dcb4a79e5",
"name": "Wait1",
"type": "n8n-nodes-base.wait",
"typeVersion": 1.1,
"position": [
940,
340
],
"webhookId": "3c786053-60ed-4de5-a37d-4de7a1727ef1"
}
],
"connections": {
"When clicking ‘Test workflow’": {
"main": [
[
{
"node": "Wait",
"type": "main",
"index": 0
}
]
]
},
"Wait": {
"main": [
[
{
"node": "Wait1",
"type": "main",
"index": 0
}
]
]
}
},
"pinData": {}
}
```
### Expected behavior
The form says its successfully submitted.
### Operating System
Ubuntu Linux 22.04 LTS
### n8n Version
1.69.2
### Node.js Version
v18.17.0
### Database
SQLite (default)
### Execution mode
main (default)
We’re still looking into it!