Skip to content

Commit

Permalink
fix: don't use indifferent access for job params
Browse files Browse the repository at this point in the history
All jobs refer to parameters using string keys.

closes #2477
closes #2714
closes #2476
closes #2500
  • Loading branch information
adamcooke committed Jan 30, 2024
1 parent 41f6cf4 commit 2bad645
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/postal/job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class Job

def initialize(id, params = {})
@id = id
@params = params.with_indifferent_access
@params = params
on_initialize
end

Expand Down

0 comments on commit 2bad645

Please sign in to comment.