Skip to content

Commit a0ab547

Browse files
committed
Use a string instead of a symbol for provider_job_id
1 parent 789274d commit a0ab547

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/models/solid_queue/claimed_execution.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def failed_with(error)
9292

9393
private
9494
def execute
95-
ActiveJob::Base.execute(job.arguments.merge(provider_job_id: job.id))
95+
ActiveJob::Base.execute(job.arguments.merge("provider_job_id" => job.id))
9696
Result.new(true, nil)
9797
rescue Exception => e
9898
Result.new(false, e)

0 commit comments

Comments
 (0)