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

(cherry picked from commit fd3d3e9)
  • Loading branch information
jrafanie authored and Fryguy committed Oct 22, 2024
1 parent 81fd3e7 commit 54d72d0
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 54d72d0

Please sign in to comment.