the maxInMemorySize value of config is not being set on every Jackson2JsonDecoder
In our Webflux application we get an incoming request, of which the payload size can be bigger than the 256kb Jackson2JsonDecoder default. There is an config value we set like:
spring:
codec:
max-in-memory-size: 20MB
This seems to work on certain Jackson2JsonDecoder, but not on all, see screenshot of debug session:
https://i.stack.imgur.com/cPlom.jpg▾
Right now, we can't seem to set the maxInMemorySize value on the Jackson2JsonDecoder our...