Why is sidekiq not working properly in development?
I have some sidekiq workers and they work great in production but in development I'm getting errors like
NameError: uninitialized constant TicketAssignedWorker..
sidekiq.yml
:concurrency: 6
:pidfile: ./tmp/pids/sidekiq.pid
:logfile: ./log/sidekiq.log
:max_retries: 5
:queues:
- default
- [high_priority, 2]
Sidekiq is used by GitLab as a background job processor to run tasks asynchronously. When things go wrong, it can be difficult to troubleshoot.
GitLab uses Sidekiq as a background job processor to carry out asynchronous tasks. Troubleshooting can be difficult when something goes wrong.