From 994fc5dd10d37d958b74f572a5cddb1882158ef3 Mon Sep 17 00:00:00 2001 From: Karl Heitmann Frutuoso Date: Fri, 20 Feb 2026 16:00:47 -0300 Subject: [PATCH] fix string returned by will be frozen in the future warning --- lib/wash_out/router.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wash_out/router.rb b/lib/wash_out/router.rb index a0660336..17b427c9 100644 --- a/lib/wash_out/router.rb +++ b/lib/wash_out/router.rb @@ -57,7 +57,7 @@ def parse_soap_action(env) soap_action = parsed_soap_body.values_at(:envelope, :Envelope).try(:compact).try(:first) soap_action = soap_action.values_at(:body, :Body).try(:compact).try(:first) if soap_action - soap_action = soap_action.keys.first.to_s if soap_action + soap_action = String.new(soap_action.keys.first.to_s) if soap_action end # RUBY18 1.8 does not have force_encoding.