Dmitriy Gerashenko
Dmitriy Gerashenko
Hello, The unescaped editor feature isn't implemented yet?
Sounds good. Actually, I was surprised when I didn't find this useful feature in any existing JSON GUI editors.
Wow, it's very convenient. Perfect, that's what I was looking for. Thanks.
Perhaps is happens when there is a content-length header in streaming response. https://github.com/zalando/logbook/blob/main/logbook-netty/src/main/java/org/zalando/logbook/netty/Offering.java#L24
This fixed my OutOfMemoryError problem: ``` Logbook.builder() .strategy(new WithoutBodyStrategy()) .build() ``` But I'm not sure if it's the right decision to use a buffer size equal to the length of...
Hi, @ChristianLohmann *.iso file was an example of a large file. I just pointed out the problem for any large file. And I'm not sure how common is that type...
May be I'm wrong but in case of `application/octet-stream` everything will by alright if we have no `content-length` because in this case we get `2048` buffer size according to https://github.com/zalando/logbook/blob/main/logbook-netty/src/main/java/org/zalando/logbook/netty/Offering.java#L24...