about summary refs log tree commit diff
path: root/config/sidekiq.yml
diff options
context:
space:
mode:
authorsdukhovni <dukhovni@mit.edu>2017-09-14 16:26:38 -0400
committerEugen Rochko <eugen@zeonfederated.com>2017-09-14 22:26:38 +0200
commit67559361e8db437ffee29af9a4fc4ea9e2daf51f (patch)
treec713d8187b6d835a6d144bd26d30690e205722c5 /config/sidekiq.yml
parent4a73615193bae27001c1441a131c0f0961a421b9 (diff)
Add scheduled worker to purge old user IPs (#4951)
* Add scheduled worker to purge old user IPs

* Use ruby 1.9 hash syntax
Diffstat (limited to 'config/sidekiq.yml')
-rw-r--r--config/sidekiq.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/config/sidekiq.yml b/config/sidekiq.yml
index a502f5593..5e4310e7e 100644
--- a/config/sidekiq.yml
+++ b/config/sidekiq.yml
@@ -24,3 +24,6 @@
   subscriptions_cleanup_scheduler:
     cron: '2 2 * * 0'
     class: Scheduler::SubscriptionsCleanupScheduler
+  ip_cleanup_scheduler:
+    cron: '0 4 * * *'
+    class: Scheduler::IpCleanupScheduler