We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can not add webhooks with HTTPS (or any) protocol scheme, and since the URL is used as-is, axios will deafult to 127.0.0.1:80 – webhooks fail.
Example:
Set webhook without scheme, e.g. webhook.site/f6d5c2f8-cb6f-4865-9ed7-a5e1b3bedd63
docker logs twenty-crm_worker_1 produces the following:
docker logs twenty-crm_worker_1
[Nest] 34 - 05/27/2025, 7:14:53 AM ERROR [CallWebhookJob] Error calling webhook on targetUrl 'webhook.site/f6d5c2f8-cb6f-4865-9ed7-a5e1b3bedd63': Error: connect ECONNREFUSED 127.0.0.1:80
Allow user to set the HTTPS scheme or auto-apply it so that axios would not default to 127.0.0.1:80 and would use the actual webhook URL
The text was updated successfully, but these errors were encountered:
Server: /src/modules/webhook/jobs/call-webhook.job.ts
UI URL validation: twenty-front/src/modules/settings/developers/hooks/useWebhookUpdateForm.ts
Sorry, something went wrong.
No branches or pull requests
Bug Description
Can not add webhooks with HTTPS (or any) protocol scheme, and since the URL is used as-is, axios will deafult to 127.0.0.1:80 – webhooks fail.
Example:
docker logs twenty-crm_worker_1
produces the following:[Nest] 34 - 05/27/2025, 7:14:53 AM ERROR [CallWebhookJob] Error calling webhook on targetUrl 'webhook.site/f6d5c2f8-cb6f-4865-9ed7-a5e1b3bedd63': Error: connect ECONNREFUSED 127.0.0.1:80
Expected behavior
Allow user to set the HTTPS scheme or auto-apply it so that axios would not default to 127.0.0.1:80 and would use the actual webhook URL
The text was updated successfully, but these errors were encountered: