James Hardwick

Results 108 comments of James Hardwick

@garronej ok good to know! Wasn't sure as I gave the latest starter template a go within Keycloak docker (e.g. npx keycloakify start-keycloak) but it just spits out a blank...

We've added a `Jackson2ObjectMapperBuilderCustomizer` to modify the max string length like @wilkinsona [mentioned](https://github.com/spring-projects/spring-boot/issues/34709#issuecomment-1482939940) but we're not seeing this reflected in our tests that use an injected ObjectMapper. We've also tried...

The only way I could get this to work was to override the defaults in a static context, e.g. ```java @Configuration public class JacksonConfig { static { StreamReadConstraints.overrideDefaultStreamReadConstraints( StreamReadConstraints.builder().maxStringLength(100000000).build() );...

@wilkinsona I got `overrideDefaultStreamReadConstraints` working but had to call it from a static context. I guess that implies some other bean/config in a 3rd party dependency could be at cause?...

I was experiencing the same until updating to 0.11.13-dev.2, now I see the same issue as @ic-jw-msp where it says "Unable to display menu bar items".

Related: https://github.com/jordanbaird/Ice/discussions/672#discussioncomment-14423221

Can confirm re-enabling "Displays have separate Spaces" fixed this. Kinda of a bummer (for other reasons) but I'll live with it.

@adriangalilea in addition to that setting, you need to use the beta (e.g. `brew install jordanbaird-ice@beta`) and not the latest stable version. In any case it's still a bug and...