Skip to main content
0 votes
1 answer
96 views

I created a model named monitor_target. In app/models/monitor_target.rb, I have after_commit -> {broadcast_refresh_later_to "monitor_targets_stream"} Then in my app/views/monitor_targets/...
Hien Thai Le's user avatar
0 votes
1 answer
368 views

I have a simple job in rails that's run every 15 minutes.I am using the default Solid queue setup for jobs. class ContinuousSearchJob < ApplicationJob def perform keyword = Keyword.first ...
raj's user avatar
  • 6,124
0 votes
0 answers
81 views

I have an application in Ruby on Rails 8.0.1 on Windows OS and I am trying to use the solid_queue adapter in ActiceJobs, as described in the official documentation. But when I run ruby bin\jobs start,...
Johan Donado B.'s user avatar
0 votes
2 answers
531 views

I'm looking for a way to handle Rails ActiveJob jobs that reached the max retry attempts. Here is the snippet of my code: class SomeJob < ApplicationJob queue_as :default retry_on StandardError,...
Hassen's user avatar
  • 7,764
1 vote
1 answer
2k views

I have a Rails app that allows users to sign up and add a list of friends or loved ones with their birthdays. The app will then email the user on their loved ones' birthdays (reminder). To achieve ...
Juzer Shakir's user avatar
0 votes
1 answer
2k views

I'm using the Solid Queue library to send emails. I followed the instructions provided in it's README file and videos from the GoRails & Webcrunch. Once the database is setup with Solid Queue ...
Juzer Shakir's user avatar
1 vote
1 answer
400 views

I have been attempting to set-up mission_control-jobs to a rails 7 app using SolidQueue, but I keep running in to the following error when accessing http://localhost:3000/jobs Propshaft::...
hellion's user avatar
  • 4,920
3 votes
3 answers
430 views

I've been using SolidQueue for a bit with good success. Mission Control was just released, so I added that gem and configuration. However, upon visiting the /jobs page I get the following error: ...
hellion's user avatar
  • 4,920