From 5052e1b9bf0d5a815fa985cac4f234f4fcabc7fe Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Wed, 13 Oct 2021 15:27:05 -0700 Subject: [PATCH] Convert proto list to array using #to_a --- plugins/commands/serve/service/capability_platform_service.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/commands/serve/service/capability_platform_service.rb b/plugins/commands/serve/service/capability_platform_service.rb index bb3e1f661..1c6c6635c 100644 --- a/plugins/commands/serve/service/capability_platform_service.rb +++ b/plugins/commands/serve/service/capability_platform_service.rb @@ -23,9 +23,7 @@ module VagrantPlugins end def seed(req, ctx) - logger.info "seeding this service with values from the client" - logger.info "values to seed include: #{req.list.inspect}" - @seeds = req.list.map{ |x| x } + @seeds = req.list.to_a Empty.new end