summaryrefslogtreecommitdiff
path: root/app/models/system_hook.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/system_hook.rb')
-rw-r--r--app/models/system_hook.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/system_hook.rb b/app/models/system_hook.rb
index 2ae5b1314e9..5f1bd6477c4 100644
--- a/app/models/system_hook.rb
+++ b/app/models/system_hook.rb
@@ -19,6 +19,6 @@ class SystemHook < WebHook
end
def async_execute(data)
- Resque.enqueue(SystemHookWorker, id, data)
+ Sidekiq::Client.enqueue(SystemHookWorker, id, data)
end
end