Ensure auth_endpoint is reset

The auth_endpoint variable is loaded from cinder.conf, thus it should
be cleared when configurations loaded by cinder.conf is cleared.

Change-Id: Id651d5c5c7cb9794ab159bf2e129422af0a33bfa
This commit is contained in:
Takashi Kajinami 2022-02-18 22:56:24 +09:00
parent 9123ac7270
commit 440b124f95
1 changed files with 1 additions and 0 deletions

View File

@ -95,5 +95,6 @@ class Puppet::Provider::Cinder < Puppet::Provider::Openstack
def self.reset
@cinder_conf = nil
@cinder_credentials = nil
@auth_endpoint = nil
end
end