Skip to content

Commit fd3d3e9

Browse files
authored
Merge pull request #9295 from Fryguy/fix_marshal_dump
Fix issue when using kerberos auth with Rails 7
2 parents c01c87e + 316aaad commit fd3d3e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/controllers/application_controller/wait_for_task.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def initiate_wait_for_task(options = {})
4949
session[:async][:params] ||= {}
5050

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

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

0 commit comments

Comments
 (0)