@@ -390,18 +390,18 @@ func basicAuth(client *http.Client, input *LoginInput) (managementClient.Token,
390
390
}
391
391
392
392
resp , respBody , err := doRequest (client , req )
393
- if err == nil && resp .StatusCode != http .StatusOK {
393
+ if err == nil && resp .StatusCode != http .StatusCreated {
394
394
err = fmt .Errorf ("unexpected http status code %d" , resp .StatusCode )
395
395
396
396
apiError := map [string ]interface {}{}
397
397
if rerr := json .Unmarshal (respBody , & apiError ); rerr == nil {
398
398
if responseType := apiError ["type" ]; responseType == "error" {
399
- err = fmt .Errorf ("error logging in: code: [%v] message:[%v]" , apiError ["code" ], apiError ["message" ])
399
+ err = fmt .Errorf ("error logging user in: code: [%v] message:[%v]" , apiError ["code" ], apiError ["message" ])
400
400
}
401
401
}
402
402
}
403
403
if err != nil {
404
- return token , err
404
+ return token , fmt . Errorf ( "error logging user in: %w" , err )
405
405
}
406
406
407
407
err = json .Unmarshal (respBody , & token )
@@ -495,7 +495,7 @@ loop:
495
495
496
496
// Delete the auth token.
497
497
resp , _ , err := doRequest (client , deleteReq )
498
- if err == nil && resp .StatusCode != http .StatusOK && resp .StatusCode != http .StatusNotFound {
498
+ if err == nil && resp .StatusCode != http .StatusNoContent && resp .StatusCode != http .StatusNotFound {
499
499
err = fmt .Errorf ("unexpected http status code %d" , resp .StatusCode )
500
500
}
501
501
if err != nil {
@@ -534,7 +534,7 @@ func getAuthProviders(client *http.Client, server string) ([]TypedProvider, erro
534
534
err = fmt .Errorf ("unexpected http status code %d" , resp .StatusCode )
535
535
}
536
536
if err != nil {
537
- return nil , err
537
+ return nil , fmt . Errorf ( "error listing auth providers: %w" , err )
538
538
}
539
539
540
540
if ! gjson .ValidBytes (respBody ) {
0 commit comments