Force the string proto value to be a string

This commit is contained in:
Chris Roberts 2022-06-13 16:18:13 -07:00
parent dc5c643364
commit 2d5cb6b0fa

View File

@ -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