From c46475ed62598414ebf60c927c32f1f40023cd1f Mon Sep 17 00:00:00 2001 From: Ryuta Kamizono Date: Sun, 13 Oct 2019 22:01:09 +0900 Subject: [PATCH] Fix keyword arguments warnings caused by #37278 https://buildkite.com/rails/rails/builds/63817#de061bf7-9b91-484d-bdeb-c974f6bed01d/987-994 --- activejob/lib/active_job/exceptions.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activejob/lib/active_job/exceptions.rb b/activejob/lib/active_job/exceptions.rb index a4f6141aac..86595a3e5f 100644 --- a/activejob/lib/active_job/exceptions.rb +++ b/activejob/lib/active_job/exceptions.rb @@ -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