Skip to content

Commit

Permalink
Merge pull request #9295 from Fryguy/fix_marshal_dump
Browse files Browse the repository at this point in the history
Fix issue when using kerberos auth with Rails 7
  • Loading branch information
jrafanie authored Oct 22, 2024
2 parents c01c87e + 316aaad commit fd3d3e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/application_controller/wait_for_task.rb
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def initiate_wait_for_task(options = {})
session[:async][:params] ||= {}

# save the incoming parms + extra_params
session[:async][:params] = params.deep_dup.merge(options[:extra_params] || {})
session[:async][:params] = params.to_unsafe_h.merge(options[:extra_params] || {})
session[:async][:params][:task_id] = task_id

# override method to be called, when the task is done
Expand Down

0 comments on commit fd3d3e9

Please sign in to comment.