From 02d6333c373c43560c85c2b11a557b0b07997356 Mon Sep 17 00:00:00 2001 From: Antony Ryabov Date: Tue, 8 Oct 2019 14:31:32 +0300 Subject: [PATCH] fixed type for auth --- lib/fog/openstack/auth/name.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fog/openstack/auth/name.rb b/lib/fog/openstack/auth/name.rb index 638f44545..1a7a2b0bb 100644 --- a/lib/fog/openstack/auth/name.rb +++ b/lib/fog/openstack/auth/name.rb @@ -30,7 +30,7 @@ def identity end def to_h(var) - {var => send(var)} + {var => send(var).to_s} end end