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:
Diffstat (limited to 'app/services/system_hooks_service.rb')
-rw-r--r--app/services/system_hooks_service.rb9
1 files changed, 1 insertions, 8 deletions
diff --git a/app/services/system_hooks_service.rb b/app/services/system_hooks_service.rb
index ba46c0074e4..af8c02a10b7 100644
--- a/app/services/system_hooks_service.rb
+++ b/app/services/system_hooks_service.rb
@@ -12,14 +12,7 @@ class SystemHooksService
hook.async_execute(data, 'system_hooks')
end
- # Execute external plugins
- Gitlab::Plugin.all.each do |plugin|
- begin
- plugin.new.execute(data)
- rescue => e
- Rails.logger.warn("GitLab -> Plugins -> #{plugin.class.name} raised an axception during execution. #{e}")
- end
- end
+ Gitlab::Plugin.execute_all_async(data)
end
private