sidecloq icon indicating copy to clipboard operation
sidecloq copied to clipboard

Recurring / Periodic / Scheduled / Cron job extension for Sidekiq

Results 11 sidecloq issues
Sort by recently updated
recently updated
newest added

Travis is no longer working, but GitHub Actions does! This PR: - Switches to GitHub Actions. - Adds newer Rubies and Sidekiq versions to the test matrix - Drops code-climate-test-reporter...

Fixes https://github.com/mattyr/sidecloq/issues/38 ~~Built on top of #39 so I could actually test the fix via the web interface.~~ EDIT: This was merged elsewhere Before: After:

In the Sidecloq config if you don't specify the queue for a job it will properly use the queue as defined by the class. For example, the following job and...

Without this, you will get an Internal Server Error stating: Sidekiq::Web needs a valid Rack session for CSRF protection. If this is a Rails app, make sure you mount Sidekiq::Web...

When running inside a rails app, does the scheduler use server time (as cron would), or rails app time (which could be different)?

I'm trying to configure sidecloq in a project with ConnectionPool for client and server configured like: Sidekiq.configure_client do |config| config.redis = ConnectionPool.new(size: 5, &redis_conn) Sidekiq::Status.configure_client_middleware config, expiration: 1.month end Looking...

We're currently using rufus-scheduler under the hood to parse and run the schedule. We can be a little more lightweight and increase testability if we replace it. rufus-scheduler uses a...

enhancement

... or set up the new gitlab CI? https://docs.gitlab.com/ee/user/project/import/gemnasium.html

This PR addresses issue #43, adding some human readable information "Next Run" information to the Web UI. Method: 1. Parse the cron string using Fugit.parse_cron (no additional dependency required) 2....