We've moved discussions to Discord

Fix for sidekiq.yml

Dan Weaver
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:

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
John Chambers
Thanks  Dan Weaver  this fixed the issue I was having too :) 
Dan Weaver
Fix for this just got merged into the main repo 😀 🙌
Notifications
You’re not receiving notifications from this thread.