diff options
author | Ignacio Tolosa <ignacio.tolosa.12@sansano.usm.cl> | 2014-06-16 13:45:29 -0400 |
---|---|---|
committer | Ignacio Tolosa <ignacio.tolosa.12@sansano.usm.cl> | 2014-06-16 13:45:29 -0400 |
commit | bab64e62ec6c609ece50f5ad7e5c16e56846b263 (patch) | |
tree | 8ed36a7a17382ca87bff8b4472486fd69334c9fe | |
parent | add626e3655745018bea2ee33b22f5471d47c152 (diff) | |
download | rails-bab64e62ec6c609ece50f5ad7e5c16e56846b263.tar.gz rails-bab64e62ec6c609ece50f5ad7e5c16e56846b263.tar.bz2 rails-bab64e62ec6c609ece50f5ad7e5c16e56846b263.zip |
fix delayed job adapter timestamp
-rw-r--r-- | lib/active_job/queue_adapters/delayed_job_adapter.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/active_job/queue_adapters/delayed_job_adapter.rb b/lib/active_job/queue_adapters/delayed_job_adapter.rb index c0561044be..bfeaa836d2 100644 --- a/lib/active_job/queue_adapters/delayed_job_adapter.rb +++ b/lib/active_job/queue_adapters/delayed_job_adapter.rb @@ -9,7 +9,7 @@ module ActiveJob end def enqueue_at(job, timestamp, *args) - JobWrapper.new.delay(queue: job.queue_name, run_at: timestamp).perform(job, *args) + JobWrapper.new.delay(queue: job.queue_name, run_at: Time.at(timestamp)).perform(job, *args) end end |