Improve error message when forking a repository

This commit is contained in:
Hugues Malphettes 2019-09-28 15:34:58 +08:00 committed by George Fleury
parent 3b3b6a8f5f
commit 9ae52f75c6

View File

@ -3056,8 +3056,8 @@ func (a *DefaultApiService) ForkRepository(projectKey, repositorySlug string,
}
defer localVarHTTPResponse.Body.Close()
if localVarHTTPResponse.StatusCode >= 300 {
bodyBytes, _ := io.ReadAll(localVarHTTPResponse.Body)
return NewAPIResponseWithError(localVarHTTPResponse, bodyBytes, reportError("Status: %v, Body: %s", localVarHTTPResponse.Status, bodyBytes))
bodyBytes, _ := ioutil.ReadAll(localVarHTTPResponse.Body)
return NewAPIResponseWithError(localVarHTTPResponse, reportError("Status: %s, Url: %s, Body: %s", localVarHTTPResponse.Status, localVarPath, bodyBytes))
}
return NewBitbucketAPIResponse(localVarHTTPResponse)