Fix keyword arguments warnings caused by #37278

https://buildkite.com/rails/rails/builds/63817#de061bf7-9b91-484d-bdeb-c974f6bed01d/987-994
This commit is contained in:
Ryuta Kamizono 2019-10-13 22:01:09 +09:00
parent 18f7c39b49
commit c46475ed62
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ module ActiveJob
# end
# end
def retry_job(options = {})
instrument :enqueue_retry, **options.slice(:error, :wait) do
instrument :enqueue_retry, options.slice(:error, :wait) do
enqueue options
end
end