I have a rails app where we want to use both sidekiq (redis queue) and shoryuken (sqs queue) for different use cases. So now , all the sidekiq workers are defined under app/workers. To separate out shoryuken workers, we thought to define and keep then under app/consumers.
So we are running this command to start shoryuken
shoryuken -r ./app/consumers/ -R -C ./config/shoryuken.yml
my question is , does giving the -r options with worker directory path forces shoryuken to load workers from that path?