Unused response to webhook node found in the workflow

I am self-hosting n8n in a Docker container with its own volume, while executing a simple workflow with a webhook and its response connected with their default values. I am getting the error below, but if I remove the webhook response node, I can execute only the first node. This is something simple but not sure what is happening here

n8n version

1.113.3 (Self Hosted)

Stack trace

WorkflowConfigurationError: Unused Respond to Webhook node found in the workflow at checkResponseModeConfiguration (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/n8n-nodes-base@file+packages+nodes-base_@[email protected]_asn1.js@5_afd197edb2c1f848eae21a96a97fab23/node_modules/n8n-nodes-base/nodes/Webhook/utils.ts:170:9) at Webhook.webhook (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/n8n-nodes-base@file+packages+nodes-base_@[email protected]_asn1.js@5_afd197edb2c1f848eae21a96a97fab23/node_modules/n8n-nodes-base/nodes/Webhook/Webhook.node.ts:211:34) at WebhookService.runWebhook (/usr/local/lib/node_modules/n8n/src/webhooks/webhook.service.ts:365:21) at Object.executeWebhook (/usr/local/lib/node_modules/n8n/src/webhooks/webhook-helpers.ts:466:60) at processTicksAndRejections (node:internal/process/task_queues:105:5) at /usr/local/lib/node_modules/n8n/src/webhooks/test-webhooks.ts:126:25

Open your Webhook node settings

Find the “Response mode” option

Set it to “Using ‘Respond to Webhook’ Node”

Without this setting, n8n won’t know to wait for the Respond to Webhook node to send the response, which can cause the error you’re experiencing.

But if I go with the immediately at least I should get a 200 response, no?