From 2d5cb6b0fabbde4ff68a5658bbd84f04ebbe43bf Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Mon, 13 Jun 2022 16:18:13 -0700 Subject: [PATCH] Force the string proto value to be a string --- plugins/commands/serve/mappers/wrappers.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/commands/serve/mappers/wrappers.rb b/plugins/commands/serve/mappers/wrappers.rb index 544b87051..24c9fb45a 100644 --- a/plugins/commands/serve/mappers/wrappers.rb +++ b/plugins/commands/serve/mappers/wrappers.rb @@ -205,7 +205,7 @@ module VagrantPlugins end def converter(s) - Google::Protobuf::StringValue.new(value: s) + Google::Protobuf::StringValue.new(value: s.to_s) end end