Class: WebHooks::DestroyWorker
- Inherits:
-
Object
- Object
- WebHooks::DestroyWorker
- Includes:
- ApplicationWorker
- Defined in:
- app/workers/web_hooks/destroy_worker.rb
Constant Summary
Constants included from ApplicationWorker
ApplicationWorker::LOGGING_EXTRA_KEY, ApplicationWorker::SAFE_PUSH_BULK_LIMIT
Constants included from WorkerAttributes
WorkerAttributes::DEFAULT_DATA_CONSISTENCY, WorkerAttributes::NAMESPACE_WEIGHTS, WorkerAttributes::VALID_DATA_CONSISTENCIES, WorkerAttributes::VALID_RESOURCE_BOUNDARIES, WorkerAttributes::VALID_URGENCIES
Instance Method Summary collapse
Methods included from Gitlab::SidekiqVersioning::Worker
Methods included from WorkerContext
Instance Method Details
#perform(user_id, web_hook_id) ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'app/workers/web_hooks/destroy_worker.rb', line 14 def perform(user_id, web_hook_id) user = User.find_by_id(user_id) hook = WebHook.find_by_id(web_hook_id) return unless user && hook result = ::WebHooks::DestroyService.new(user).sync_destroy(hook) return result if result[:status] == :success e = ::WebHooks::DestroyService::DestroyError.new(result[:message]) Gitlab::ErrorTracking.track_exception(e, web_hook_id: hook.id) raise e end |