From 4420feb9cf8ab0fa97e3e21b0f60ce49d5038744 Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Fri, 1 Oct 2021 12:10:30 -0700 Subject: [PATCH] Disable cacher usage until mapper is updated --- plugins/commands/serve/util/has_mapper.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/commands/serve/util/has_mapper.rb b/plugins/commands/serve/util/has_mapper.rb index 84e3b87b0..fcd27ba3f 100644 --- a/plugins/commands/serve/util/has_mapper.rb +++ b/plugins/commands/serve/util/has_mapper.rb @@ -10,7 +10,8 @@ module VagrantPlugins def initialize(*args, **opts, &block) @cacher = Cacher.new @mapper = Mappers.new - @mapper.cacher = @cacher + # TODO(spox): enable this when future is present + # @mapper.cacher = @cacher if respond_to?(:broker) @mapper.add_argument(broker) end