Adjust Webhook timeout

Greetings,

It seems like webhooks have an internal timeout were, if the endpoint takes too much time sending a response, it tries again and sends another request.

Is there a way to adjust the timeout or disable this behaviour?

Thanks in advance for your answer.

PD: My test endpoint is on ngrok, and i added a timeout of 10s for testing this.

there is no such feature. timeout is set to 5. retries are set to 3.

if you wish you can add configuration field on webhook and use it in requests and send a pull request.

https://requests.readthedocs.io/en/latest/user/advanced/#timeouts

code that will change:

Oh, alright, I just wanted to make sure before trying something in the code. Thanks.