From abf17eb09f34d452485a0f20523cae888486b18a Mon Sep 17 00:00:00 2001 From: Pete Matsyburka Date: Thu, 18 Dec 2025 12:12:40 +0200 Subject: [PATCH] localhost list --- lib/send_webhook_request.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/send_webhook_request.rb b/lib/send_webhook_request.rb index f9845e16..e6106756 100644 --- a/lib/send_webhook_request.rb +++ b/lib/send_webhook_request.rb @@ -3,7 +3,7 @@ module SendWebhookRequest USER_AGENT = 'DocuSeal.com Webhook' - LOCALHOSTS = %w[0.0.0.0 127.0.0.1 localhost].freeze + LOCALHOSTS = DownloadUtils::LOCALHOSTS MANUAL_ATTEMPT = 99_999 AUTOMATED_RETRY_RANGE = 1..(MANUAL_ATTEMPT - 1)