Initialize cache in the proper location within Service class

This commit is contained in:
Chris Roberts 2022-02-18 16:43:00 -08:00 committed by Paul Hinze
parent b0b5d1191e
commit d070b2cc6f
No known key found for this signature in database
GPG Key ID: B69DEDF2D55501C0

View File

@ -38,10 +38,10 @@ module VagrantPlugins
end
end
end
@cache = Util::Cacher.new
end
@cache = Util::Cacher.new
autoload :CapabilityPlatformService, Vagrant.source_root.join("plugins/commands/serve/service/capability_platform_service").to_s
autoload :CommandService, Vagrant.source_root.join("plugins/commands/serve/service/command_service").to_s
autoload :CommunicatorService, Vagrant.source_root.join("plugins/commands/serve/service/communicator_service").to_s