summaryrefslogtreecommitdiff
path: root/app/workers/remote_mirror_notification_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/remote_mirror_notification_worker.rb')
-rw-r--r--app/workers/remote_mirror_notification_worker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/remote_mirror_notification_worker.rb b/app/workers/remote_mirror_notification_worker.rb
index 5bafe8e2046..368abfeda99 100644
--- a/app/workers/remote_mirror_notification_worker.rb
+++ b/app/workers/remote_mirror_notification_worker.rb
@@ -4,7 +4,7 @@ class RemoteMirrorNotificationWorker
include ApplicationWorker
def perform(remote_mirror_id)
- remote_mirror = RemoteMirrorFinder.new(id: remote_mirror_id).execute
+ remote_mirror = RemoteMirror.find_by_id(remote_mirror_id)
# We check again if there's an error because a newer run since this job was
# fired could've completed successfully.