Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-09-09 00:13:09 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-09-09 00:13:09 +0300
commitf26a600a69b3a13d3102d801f5d92d3235ea56d4 (patch)
tree87393fc4a3de2ff1324ea014563de27512316227 /app/models/integrations
parent03a8aa2ca6a7d7aced2fde7815c8ef85d681db60 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/models/integrations')
-rw-r--r--app/models/integrations/buildkite.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/app/models/integrations/buildkite.rb b/app/models/integrations/buildkite.rb
index c19e06f055e..7a48e71b934 100644
--- a/app/models/integrations/buildkite.rb
+++ b/app/models/integrations/buildkite.rb
@@ -8,8 +8,6 @@ module Integrations
include ReactivelyCached
extend Gitlab::Utils::Override
- after_save :ensure_ssl_verification
-
ENDPOINT = "https://buildkite.com"
field :project_url,
@@ -50,12 +48,6 @@ module Integrations
self.properties = properties.except('enable_ssl_verification') # Remove unused key
end
- def ensure_ssl_verification
- return unless service_hook
-
- update_web_hook!
- end
-
override :hook_url
def hook_url
"#{buildkite_endpoint('webhook')}/deliver/#{webhook_token}"