Antoine Musso
Antoine Musso
What could be done is to have the client point to the http proxy, and have Angry Caching to rewrite the URL to their HTTPS versions. Assuming you trust your...
To elaborate on my previous comment, there are two ways that can be deal with: **Man in the middle** The packages managers uses their default index URL, which nowadays are...
As of current master ( ea0651ca5b17538e4bff8694edbc8b43259cee63 ): 16x16:  22x22:  32x32:  48x48:  128x128:  Note how icons 16, 22, 32 are different from the 48 and 128...
So it seems that is fixed by https://github.com/dbushell/grunt-svg2png/commit/206065d519af7c55a8157db2a69cb9b125ccd728 and grunt-svg2png can probably deserve a new version to be tagged :]
@TheKrush can you amend your commit based on @ardi69 suggestion? Merely add `#ifdef UNICODE` :)
There is also #48
@MarkEWaite looks like your first pass was fine (catching just `AuthenticationException`) since build 25 eventually worked for the user. Looks like you can remove f33342fe16c644409a7e0e4be2fa6dea270f2712 which catches `UncheckedExecutionException` and I...
A bit more investigation. The plugin throws at: ```(java) hudson/plugins/git/GitChangeSet.java try { user = User.get(csAuthor, false, Collections.emptyMap()); } catch (AuthenticationException authException) { // JENKINS-67491 - do not fail due to...
I think the issue is `loadUserByUsername()` only throws the `AuthenticationException` `UsernameNotFoundException`, otherwise it throws an `ExecutionException`.
I have tested my theory on our Jenkins instance via the script console and my dummy code worked: ```java import org.springframework.security.core.AuthenticationException; import com.google.common.util.concurrent.UncheckedExecutionException; try { try { println("Attempting to retrieve...