From 022f17e711e239895e27c13e4e9d0fff1a114eab Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Fri, 19 Nov 2021 17:17:55 -0800 Subject: [PATCH] Use final vertex type for destination in mapper --- plugins/commands/serve/mappers/internal/graph/mappers.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/commands/serve/mappers/internal/graph/mappers.rb b/plugins/commands/serve/mappers/internal/graph/mappers.rb index 472f2e516..1eacd568a 100644 --- a/plugins/commands/serve/mappers/internal/graph/mappers.rb +++ b/plugins/commands/serve/mappers/internal/graph/mappers.rb @@ -147,7 +147,7 @@ module VagrantPlugins end # Create an output vertex for our expected # result type - @dst = graph.add_vertex(Graph::Vertex::Output.new(type: final)) + @dst = graph.add_vertex(Graph::Vertex::Final.new(type: final)) @dst.weight = FINAL_WEIGHT # Add an edge from all our value vertices to