We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example, if we set the JAVA_TOOL_OPTIONS environment variable
JAVA_TOOL_OPTIONS
export JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF8
then the first line is not the version:
$ java -version Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8 openjdk version "1.8.0_322" OpenJDK Runtime Environment (Zulu 8.60.0.21-CA-macos-aarch64) (build 1.8.0_322-b06) OpenJDK 64-Bit Server VM (Zulu 8.60.0.21-CA-macos-aarch64) (build 25.322-b06, mixed mode)
The getActualJavaVersion looks only at the first line (see here).
getActualJavaVersion
Ideally, it would skip over leading lines that start with Picked up. Related to nextflow-io/nextflow#1716
Picked up
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For example, if we set the
JAVA_TOOL_OPTIONS
environment variablethen the first line is not the version:
The
getActualJavaVersion
looks only at the first line (see here).Ideally, it would skip over leading lines that start with
Picked up
. Related to nextflow-io/nextflow#1716The text was updated successfully, but these errors were encountered: