Commit 126db264 authored by Ethan Urie's avatar Ethan Urie

Make regex a constant

parent 4603a283
...@@ -21,6 +21,8 @@ module Gitlab ...@@ -21,6 +21,8 @@ module Gitlab
update: ::Spamcheck::Action::UPDATE update: ::Spamcheck::Action::UPDATE
}.freeze }.freeze
URL_SCHEME_REGEX = %r{^grpc://|^tls://}
def initialize def initialize
@endpoint_url = Gitlab::CurrentSettings.current_application_settings.spam_check_endpoint_url @endpoint_url = Gitlab::CurrentSettings.current_application_settings.spam_check_endpoint_url
...@@ -28,7 +30,7 @@ module Gitlab ...@@ -28,7 +30,7 @@ module Gitlab
# remove the `grpc://` or 'tls://' as it's only useful to ensure we're expecting to # remove the `grpc://` or 'tls://' as it's only useful to ensure we're expecting to
# connect with Spamcheck # connect with Spamcheck
@endpoint_url = @endpoint_url.sub(%r{^grpc://|^tls://}, '') @endpoint_url = @endpoint_url.sub(URL_SCHEME_REGEX, '')
end end
def issue_spam?(spam_issue:, user:, context: {}) def issue_spam?(spam_issue:, user:, context: {})
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment