Only pass the project if it is specified

This commit is contained in:
Justin Santa Barbara 2013-09-02 10:22:14 -07:00
parent 43cb57cd9c
commit 7a628b294d
1 changed files with 4 additions and 1 deletions

View File

@ -40,10 +40,13 @@ func (c *AccessConfig) Auth() (gophercloud.AccessProvider, error) {
authoptions := gophercloud.AuthOptions{ authoptions := gophercloud.AuthOptions{
Username: username, Username: username,
Password: password, Password: password,
TenantName: project,
AllowReauth: true, AllowReauth: true,
} }
if project != "" {
authoptions.TenantName = project
}
return gophercloud.Authenticate(provider, authoptions) return gophercloud.Authenticate(provider, authoptions)
} }