From 66982e45ce6c6ec890e38f68ad02e3e71eef90fa Mon Sep 17 00:00:00 2001 From: Aidan Cornelius-Bell Date: Sun, 13 Oct 2024 14:27:45 +1030 Subject: [PATCH] remove async from bookmark digest task --- lib/tasks/lib-tasks-bookmarks_digest.rake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tasks/lib-tasks-bookmarks_digest.rake b/lib/tasks/lib-tasks-bookmarks_digest.rake index a06fa5d..b962ac6 100644 --- a/lib/tasks/lib-tasks-bookmarks_digest.rake +++ b/lib/tasks/lib-tasks-bookmarks_digest.rake @@ -1,6 +1,6 @@ namespace :bookmarks_digest do desc "Send weekly bookmarks digest" task send_weekly: :environment do - WeeklyBookmarksDigestJob.perform_later + WeeklyBookmarksDigestJob.perform_now end -end \ No newline at end of file +end -- 2.39.5