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>2023-02-20 16:49:51 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-02-20 16:49:51 +0300
commit71786ddc8e28fbd3cb3fcc4b3ff15e5962a1c82e (patch)
tree6a2d93ef3fb2d353bb7739e4b57e6541f51cdd71 /app/helpers/web_hooks
parenta7253423e3403b8c08f8a161e5937e1488f5f407 (diff)
Add latest changes from gitlab-org/gitlab@15-9-stable-eev15.9.0-rc42
Diffstat (limited to 'app/helpers/web_hooks')
-rw-r--r--app/helpers/web_hooks/web_hooks_helper.rb10
1 files changed, 1 insertions, 9 deletions
diff --git a/app/helpers/web_hooks/web_hooks_helper.rb b/app/helpers/web_hooks/web_hooks_helper.rb
index bda9bf58fb7..514db6ba8a2 100644
--- a/app/helpers/web_hooks/web_hooks_helper.rb
+++ b/app/helpers/web_hooks/web_hooks_helper.rb
@@ -2,8 +2,6 @@
module WebHooks
module WebHooksHelper
- EXPIRY_TTL = 1.hour
-
def show_project_hook_failed_callout?(project:)
return false if project_hook_page?
return false unless current_user
@@ -12,17 +10,11 @@ module WebHooks
# Assumes include of Users::CalloutsHelper
return false if web_hook_disabled_dismissed?(project)
- any_project_hook_failed?(project) # Most expensive query last
+ project.fetch_web_hook_failure
end
private
- def any_project_hook_failed?(project)
- Rails.cache.fetch("any_web_hook_failed:#{project.id}", expires_in: EXPIRY_TTL) do
- ProjectHook.for_projects(project).disabled.exists?
- end
- end
-
def project_hook_page?
current_controller?('projects/hooks') || current_controller?('projects/hook_logs')
end