from now on the rescue namespace will be decided by site object field: resque_namespace
This commit is contained in:
parent
e10eb833ed
commit
d78e816b4e
|
@ -28,7 +28,7 @@ class Site
|
|||
mount_uploader :default_image, ImageUploader
|
||||
|
||||
field :search,:type => Hash
|
||||
|
||||
field :resque_namespace,:type => String, :default=>APP_CONFIG['orbit']
|
||||
field :title, localize: true
|
||||
field :footer, localize: true
|
||||
field :sub_menu, localize: true
|
||||
|
|
|
@ -3,7 +3,7 @@ require 'resque_scheduler/server'
|
|||
# require 'yaml'
|
||||
|
||||
Resque.redis = 'localhost:6379'
|
||||
Resque.redis.namespace = "resque"
|
||||
Resque.redis.namespace = Site.first.resque_namespace rescue APP_CONFIG['orbit']
|
||||
|
||||
# If you want to be able to dynamically change the schedule,
|
||||
# uncomment this line. A dynamic schedule can be updated via the
|
||||
|
|
Loading…
Reference in New Issue