Jose Carvajal

Results 89 comments of Jose Carvajal

To sum up, what you're requesting (and what spec conforms) is that when getting the following request: ``` Content-Disposition: form-data; name="textPart"; filename="my_file.txt" Content-Type: application/octet-stream Content-Transfer-Encoding: binary ``` Then, if we...

> Hm... > > I understand the logic of this, but don't these only work if called after the tests have finished? Correct. When using the after each or after...

> I am also wondering whether the calls should be collapsed into a single call (properly named to indicate it's intended use) and returning an object containing the two pieces...

> Sorry, I meant adding one method instead of two, where that method returns an object that contains the necessary information. I've updated this pull request by adding a single...

PR updated with conflicts resolved. cc @metacosm @gsmet

> So should we merge this one? Yes, please. I've just rebased the pull request just in case.

@westarne have you tried to provide your custom ObjectMapper instance by following the instructions in https://quarkus.io/guides/rest-json#json ? Something like this should work: ```java import com.fasterxml.jackson.databind.ObjectMapper; import io.quarkus.jackson.ObjectMapperCustomizer; import javax.enterprise.inject.Instance; import...

I looked into this issue before my PTO and shared the same thoughts as @geoand . The most straightforward approach is to provide a custom message reader / writer that...