Fix for sidekiq.yml
When I selected Sidekiq as my background job processor in Jumpstart config it was supposed to write a `config/sidekiq.yml` file but it wasn't working for me.
I changed this line in `lib/jumpstart/lib/jumpstart/configuration.rb` and it worked properly:
I changed this line in `lib/jumpstart/lib/jumpstart/configuration.rb` and it worked properly:
def update_procfiles write_file Rails.root.join("Procfile"), procfile_content write_file Rails.root.join("Procfile.dev"), procfile_content(webpack_dev_server: true) # write_file Rails.root.join("config", "sidekiq.yml"), JobProcessor.sidekiq_config if job_processor == "sidekiq" write_file Rails.root.join("config", "sidekiq.yml"), JobProcessor.sidekiq_config if job_processor == :sidekiq end
Notifications
You’re not receiving notifications from this thread.