Matt Nelson

Results 16 issues of Matt Nelson

The JRE images are purging[1] everything but the `jre/bin` directory. In order to enable flight recorder[2] on demand[3], `jcmd` should also be persisted. [1] https://github.com/anapsix/docker-alpine-java/blob/8u172b11/8/172b11/server-jre/standard/Dockerfile#L40 [2] https://github.com/anapsix/docker-alpine-java/pull/6 [3] https://docs.oracle.com/javase/8/docs/technotes/guides/troubleshoot/tooldescr006.html

Provide a cask for adopt's JMC[1]. The cask in homebrew's mainline[2] is from java.net [1] https://adoptopenjdk.net/jmc.html [2] https://github.com/Homebrew/homebrew-cask/blob/master/Casks/jdk-mission-control.rb

enhancement
help wanted

Changing the state of the stream without a terminal operation between the two states produces indeterminate stream state. https://stackoverflow.com/questions/35742640/calling-sequential-on-parallel-stream-makes-all-previous-operations-sequential/35744490#35744490

needs investigation
addition

Upgraded 7.4.3.sb to 7.4.5 and the IMC_IMMATURE_CLASS_BAD_SERIALVERSIONUID detector is firing for a bunch of classes. I attempted to regenerate the value via intellij but I am not able to resolve...

help wanted

Started getting what I think is a false positive for `HCP_HTTP_REQUEST_RESOURCES_NOT_FREED_LOCAL` when compiling with java11(release target of 8). spotsbugs plugin output ```xml ``` sample code ```java try (final CloseableHttpClient client...

needs investigation

When performing concurrent processing outside of a parallel stream, I have lazily used the common fork join pool to avoid creating my own executor service. Many times I have used...

addition

Unable to use external dependencies with the java8 template. https://github.com/openfaas/templates/tree/master/template/java8#external-dependencies ## Expected Behaviour The build should succeed. ## Current Behaviour The command `faas-cli build -f jdbc.yml` fails. ``` > Task...

support

Implemented multiline support (#477) Adds support for multiline values for url configuration sources only. Each url source supports multiple values across multiple lines for the same key. Multiple lines from...

When building the site the profiler output is only including the `maven-site-plugin`. Is it possible to include all the plugins executing during the site lifecycle? ``` org.apache.maven.plugins:maven-site-plugin:3.6:site {execution: default-site} |...

I am trying to use the info properties as a drop in replacement for the Manifest. Unfortunately the *.properties file is changed to use `=` instead of `:` for the...