fix rubocop

This commit is contained in:
Pete Matsyburka
2025-10-04 18:33:37 +03:00
parent 0cdcdb8898
commit 5d87160ee9
12 changed files with 20 additions and 14 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ module SendWebhookRequest
LOCALHOSTS = %w[0.0.0.0 127.0.0.1 localhost].freeze
MANUAL_ATTEMPT = 99_999
AUTOMATED_RETRY_RANGE = 1..MANUAL_ATTEMPT - 1
AUTOMATED_RETRY_RANGE = 1..(MANUAL_ATTEMPT - 1)
HttpsError = Class.new(StandardError)
LocalhostError = Class.new(StandardError)