Austin Arbor

Results 44 comments of Austin Arbor

I do have this in my `misc.zsh` so I think bracketed pasted magic is disabled for me? ```bash #autoload -Uz bracketed-paste-magic #zle -N bracketed-paste bracketed-paste-magic ``` Regarding https://github.com/zsh-users/zsh-autosuggestions/issues/238#issuecomment-389324292, in which...

~~Ah, it appears overriding `misc.zsh` in `$ZSH_CUSTOM` directory is not working~~. Confirming disabling `bracketed-paste-magic` does resolve the issue. https://github.com/zsh-users/zsh-autosuggestions/issues/238#issuecomment-389324292 did speed up pasting, but did not resolve the issue. Edit:...

@JoshKCarroll thanks! this looks good. i did have some other observations but i'll open another issue for those

For now, I am "hacking" the`NonNullMapper` before it gets initialized... ```java try { Field f = NonNullMapper.class.getDeclaredField("COMMON_NON_NULL_ANNOTATIONS"); f.setAccessible(true); Field modifiersField = Field.class.getDeclaredField("modifiers"); modifiersField.setAccessible(true); modifiersField.setInt(f, f.getModifiers() & ~Modifier.FINAL); f.set(null, new String[]{});...

@retrodaredevil thanks for the suggestions, however, your solution isn't totally working for me, I think the issue is: https://github.com/leangen/graphql-spqr/blob/master/src/main/java/io/leangen/graphql/GraphQLSchemaGenerator.java#L902 , so we also need to remove from the schema transformers....

> Can we maybe get a configuration option for COMMON_NON_NULL_ANNOTATIONS? I agree, should be easy enough to just have a constructor accept a list of annotations etc and then you...

@kaqqao my use case for this is to inject data from the `SecurityContext` . For example, right now I need to call `SecurityContextHolder.getContext().getAuthentication() ...` to retrieve the user details and...

@carlogilmar which variables are you referring to in step 4?

@ignacio83 is there a reason to use `org.xnio:type=Xnio,provider="nio",worker="XNIO-1"` over `jboss.threads:name="XNIO-1",type=thread-pool` ? Genuine question, as they both seem to contain similar information

I am using it from within spring boot as an embedded server, AFAIK wildfly is not being used but I could be wrong