thecore_background_jobs 2.1.3 → 2.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/config/initializers/sidekiq-thecore.rb +16 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25822f9c80f3f04065323e8a959852aacff9a4d8fa9bc81997e8c4a3e9208b2b
|
4
|
+
data.tar.gz: 3c1b4fe01ac7612d52e45e87774df6ae8b5de26d463c0d98b1a13db31bc70fef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 914a95a8a3ae73a3436bb93ce3bac566d5895ae6e8fb553a5efc88ccd44da26bfdb6c9c57df0594b07bb4d69c7459ef0824e38c7a717961733df03294da5feb1
|
7
|
+
data.tar.gz: 2c11d53d3822056e05e047f01af74c5e9ec2e48c8a78edef97a6272761649c93096aac4183d42e60cd3cf080bf11d9d03c210f8654dc83470d07380cf5097894
|
@@ -7,4 +7,19 @@
|
|
7
7
|
# end
|
8
8
|
# Sidekiq.configure_client do |config|
|
9
9
|
# config.redis = { :namespace => "#{ENV['COMPOSE_PROJECT_NAME'] || 'notset'}", :url => "#{ENV['REDIS_URL']}/#{current_db}" }
|
10
|
-
# end
|
10
|
+
# end
|
11
|
+
|
12
|
+
# Set the default queue name for the analysis job to the queue adapter default.
|
13
|
+
Rails.application.config.active_storage.queues.analysis = "#{ENV['COMPOSE_PROJECT_NAME'] || 'notset'}_storage_analysis"
|
14
|
+
|
15
|
+
# Set the default queue name for the purge job to the queue adapter default.
|
16
|
+
Rails.application.config.active_storage.queues.purge = "#{ENV['COMPOSE_PROJECT_NAME'] || 'notset'}_storage_purge"
|
17
|
+
|
18
|
+
# Set the default queue name for the incineration job to the queue adapter default.
|
19
|
+
Rails.application.config.action_mailbox.queues.incineration = "#{ENV['COMPOSE_PROJECT_NAME'] || 'notset'}_mailbox_incinerate"
|
20
|
+
|
21
|
+
# Set the default queue name for the routing job to the queue adapter default.
|
22
|
+
Rails.application.config.action_mailbox.queues.routing = "#{ENV['COMPOSE_PROJECT_NAME'] || 'notset'}_mailbox_routing"
|
23
|
+
|
24
|
+
# Set the default queue name for the mail deliver job to the queue adapter default.
|
25
|
+
Rails.application.config.action_mailer.deliver_later_queue_name = "#{ENV['COMPOSE_PROJECT_NAME'] || 'notset'}_mailers"
|