You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a unit test, my controller is returning a 400. I need to be able to read the error body to see why the request is failing, but HttpClientResponseException.response.body() is sometimes null. I've seen it work successfully once, but it's usually null, so this seems like a race condition or the body isn't being read correctly when the exception is generated.
Actual Behaviour
The error body shouldn't be null
Steps To Reproduce
val response =try {
httpClient.toBlocking().retrieve(req, CursorResult::class.java)
} catch (e:HttpClientResponseException) {
// body is null hereLOG.error("HTTP error body: ${e.response.body()}")
throw e
}
Environment Information
Micronaut version 4.7.4
Micronaut Platform version 4.4.5
Example Application
No response
Version
4.7.4
The text was updated successfully, but these errors were encountered:
Unfortunately this isn't consistently reproducible. I've seen the same test sometimes have an error body, and sometimes it's null. I think we may need somebody to look at the body closing code and check for race conditions.
Expected Behavior
In a unit test, my controller is returning a 400. I need to be able to read the error body to see why the request is failing, but
HttpClientResponseException.response.body()
is sometimes null. I've seen it work successfully once, but it's usually null, so this seems like a race condition or the body isn't being read correctly when the exception is generated.Actual Behaviour
The error body shouldn't be null
Steps To Reproduce
Environment Information
Micronaut version 4.7.4
Micronaut Platform version 4.4.5
Example Application
No response
Version
4.7.4
The text was updated successfully, but these errors were encountered: