From e47da9881041b475c29499cd540c5118e54d39ee Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Mon, 13 Jun 2022 17:05:52 -0700 Subject: [PATCH] Update unset value constant --- lib/vagrant/plugin/v2/plugin.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/plugin/v2/plugin.rb b/lib/vagrant/plugin/v2/plugin.rb index 72fa95e58..eb8ee7a1b 100644 --- a/lib/vagrant/plugin/v2/plugin.rb +++ b/lib/vagrant/plugin/v2/plugin.rb @@ -289,7 +289,7 @@ module Vagrant protected # Sentinel value denoting that a value has not been set. - UNSET_VALUE = Object.new + UNSET_VALUE = :__UNSET__VALUE__ # Helper method that will set a value if a value is given, or otherwise # return the already set value.