Commit 5e2baaf3 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Improve exception description in bg migrations

parent 34081571
......@@ -20,7 +20,9 @@ class BackgroundMigrationWorker
now = Time.now.to_i
schedule = now + delay.to_i
raise ArgumentError, 'Delay time invalid!' if schedule <= now
if schedule <= now
raise ArgumentError, 'The schedule time must be in the future!'
end
Sidekiq::Client.push_bulk('class' => self,
'queue' => sidekiq_options['queue'],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment