Skip to content

Commit

Permalink
Merge 5e53476 into 33a3915
Browse files Browse the repository at this point in the history
  • Loading branch information
clintkitson committed Oct 12, 2015
2 parents 33a3915 + 5e53476 commit 4fdbc1d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions storage/rackspace/storage.go
Expand Up @@ -163,14 +163,14 @@ func Init(cfg *config.Config) (storage.Driver, error) {

func getAuthOptions(cfg *config.Config) gophercloud.AuthOptions {
return gophercloud.AuthOptions{
IdentityEndpoint: config.RackspaceAuthUrl,
UserID: config.RackspaceUserId,
Username: config.RackspaceUserName,
Password: config.RackspacePassword,
TenantID: config.RackspaceTenantId,
TenantName: config.RackspaceTenantName,
DomainID: config.RackspaceDomainId,
DomainName: config.RackspaceDomainName,
IdentityEndpoint: cfg.RackspaceAuthUrl,
UserID: cfg.RackspaceUserId,
Username: cfg.RackspaceUserName,
Password: cfg.RackspacePassword,
TenantID: cfg.RackspaceTenantId,
TenantName: cfg.RackspaceTenantName,
DomainID: cfg.RackspaceDomainId,
DomainName: cfg.RackspaceDomainName,
}
}

Expand Down

0 comments on commit 4fdbc1d

Please sign in to comment.