| commit | 55f2433f1a7484b6a3723ad01191d27fc7520065 | [log] [tgz] |
|---|---|---|
| author | Ash Wilson <smashwilson@gmail.com> | Thu Oct 02 09:37:05 2014 -0400 |
| committer | Ash Wilson <smashwilson@gmail.com> | Thu Oct 02 09:37:05 2014 -0400 |
| tree | cfc915eace66132f497c9c84661522f8c5b1c271 | |
| parent | 63b2a298cf7e43d14a4645917c8c10ff010b8ad3 [diff] |
Missed a return. Thank you unit testing
diff --git a/openstack/identity/v3/tokens/requests.go b/openstack/identity/v3/tokens/requests.go index 0923091..c8587b6 100644 --- a/openstack/identity/v3/tokens/requests.go +++ b/openstack/identity/v3/tokens/requests.go
@@ -106,7 +106,7 @@ } } else { // If no password or token ID are available, authentication can't continue. - createErr(ErrMissingPassword) + return createErr(ErrMissingPassword) } } else { // Password authentication.