-
-
Save wrburgess/858be7820b6da83fd7e28ca1b40a82eb to your computer and use it in GitHub Desktop.
sidekiq clear counter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sidekiq.redis {|c| c.del('stat:processed') } | |
and to reset failed jobs: | |
Sidekiq.redis {|c| c.del('stat:failed') } | |
bundle exec sidekiq -q high,5 default | |
RAILS_ENV=production bundle exec sidekiq -d -L /home/deployer/apps/collector/shared/sidekiq.log -q high,5 default |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment