Skip to content

Commit

Permalink
release: Fix Sidekiq
Browse files Browse the repository at this point in the history
release: Fix Sidekiq
  • Loading branch information
Quentinchampenois authored Jan 11, 2024
2 parents 3d8159a + cab60be commit 923126d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 16 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,6 @@ jobs:
key: asset-cache-${{ runner.os }}-${{ steps.cache-hash.outputs.hash }}
- run: mkdir -p ./spec/tmp/screenshots
name: Create the screenshots folder
# TODO: Use latest version
- uses: nanasess/setup-chromedriver@v2
with:
chromedriver-version: "114.0.5735.90"
- run: bundle exec rake "test:run[exclude, spec/system/**/*_spec.rb, ${{ matrix.slice }}]"
name: RSpec
- run: ./.github/upload_coverage.sh decidim-app $GITHUB_EVENT_PATH
Expand Down Expand Up @@ -156,10 +152,6 @@ jobs:
key: asset-cache-${{ runner.os }}-${{ steps.cache-hash.outputs.hash }}
- run: mkdir -p ./spec/tmp/screenshots
name: Create the screenshots folder
# TODO: Use latest version
- uses: nanasess/setup-chromedriver@v2
with:
chromedriver-version: "114.0.5735.90"
- run: bundle exec rake "test:run[include, spec/system/**/*_spec.rb, ${{ matrix.slice }}]"
name: RSpec
- run: ./.github/upload_coverage.sh decidim-app $GITHUB_EVENT_PATH
Expand Down
21 changes: 13 additions & 8 deletions config/sidekiq.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,34 @@
:concurrency: 5
:queues:
- mailers
- default
- backups
- metrics
- mailers
- newsletter
- events
- newsletter
- exports
- user_report
- block_user
- scheduled
- translations
- metrics
- vote_reminder
- reminders

:scheduler:
:schedule:
CalculateAllMetrics:
cron: '0 0 0 * * *' # Run at midnight
cron: '0 9 0 * * *' # Run at 00:09
class: CalculateAllMetricsJob
queue: scheduled
PreloadOpenData:
cron: '0 0 1 * * *' # Run at 01:00
class: PreloadOpenDataJob
queue: scheduled
OrdersReminder:
cron: '0 0 18 * * *' # Run at 18:00
class: OrdersReminderJob
DetectSpamUsers:
cron: '0 <%= Random.rand(0..59) %> <%= Random.rand(6..8) %> * * *' # Run randomly between 06:00 and 08:59
class: Decidim::SpamDetection::MarkUsersJob
queue: scheduled
Backup:
cron: '0 0 4 * * *' # Run at 04:00
class: BackupJob
queue: backups

0 comments on commit 923126d

Please sign in to comment.