File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ type Config struct {
5151 DelayedAuth bool
5252 AllowReauth bool
5353 OsClient * gophercloud.ProviderClient
54- authOpts * gophercloud.AuthOptions
54+ AuthOpts * gophercloud.AuthOptions
5555 authenticated bool
5656 authFailed error
5757 swClient * gophercloud.ServiceClient
@@ -211,7 +211,7 @@ func (c *Config) LoadAndValidate() error {
211211 }
212212 }
213213
214- c .authOpts = ao
214+ c .AuthOpts = ao
215215 c .OsClient = client
216216
217217 return nil
@@ -230,7 +230,7 @@ func (c *Config) Authenticate() error {
230230 }
231231
232232 if ! c .authenticated {
233- if err := openstack .Authenticate (c .OsClient , * c .authOpts ); err != nil {
233+ if err := openstack .Authenticate (c .OsClient , * c .AuthOpts ); err != nil {
234234 c .authFailed = err
235235 return err
236236 }
You can’t perform that action at this time.
0 commit comments