Skip to content

Commit

Permalink
don't want to modify the passed object
Browse files Browse the repository at this point in the history
  • Loading branch information
putmanoj committed Nov 8, 2024
1 parent 2a215b0 commit 1748cd7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def stack_response
end

def decrypt_vars(input_vars)
input_vars.transform_values! { |val| val.kind_of?(String) ? ManageIQ::Password.try_decrypt(val) : val }
input_vars.transform_values { |val| val.kind_of?(String) ? ManageIQ::Password.try_decrypt(val) : val }
end

def configuration_script_source
Expand Down

0 comments on commit 1748cd7

Please sign in to comment.