update error message when InlineAdapter is used

This commit is contained in:
yuuji.yaginuma 2014-10-08 09:08:11 +09:00
parent 0bd1a4e05c
commit a1e925db70
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ module ActiveJob
end
def enqueue_at(*) #:nodoc:
raise NotImplementedError.new("Use a queueing backend to enqueue jobs in the future. Read more at https://github.com/rails/activejob")
raise NotImplementedError.new("Use a queueing backend to enqueue jobs in the future. Read more at http://guides.rubyonrails.org/active_job_basics.html")
end
end
end