Retrieving latest JDK11 linux binary doesn't work
JasonFengJ9 opened this issue · 4 comments
Tried following link:
https://api.adoptopenjdk.net/v2/binary/releases/openjdk11?openjdk_impl=openj9&os=linux&arch=x64&release=latest&type=jdk
The browser spits following message:
Multiple binaries match request: [ { "os": "linux", "architecture": "x64", "binary_type": "jdk", "openjdk_impl": "openj9", "binary_name": "OpenJDK11U-jdk_x64_linux_openj9_linuxXL_11.0.2_9-openj9-0.12.0.tar.gz", "binary_link": "https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.2%2B9/OpenJDK11U-jdk_x64_linux_openj9_linuxXL_11.0.2_9-openj9-0.12.0.tar.gz", "binary_size": 198670163, "checksum_link": "https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.2%2B9/OpenJDK11U-jdk_x64_linux_openj9_linuxXL_11.0.2_9-openj9-0.12.0.tar.gz.sha256.txt", "version": "11", "version_data": { "openjdk_version": "11.0.2+9", "semver": "11.0.2+9" }, "heap_size": "large", "download_count": 3, "updated_at": "2019-01-31T12:31:29Z" }, { "os": "linux", "architecture": "x64", "binary_type": "jdk", "openjdk_impl": "openj9", "binary_name": "OpenJDK11U-jdk_x64_linux_openj9_11.0.2_9_openj9-0.12.0.tar.gz", "binary_link": "https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.2%2B9/OpenJDK11U-jdk_x64_linux_openj9_11.0.2_9_openj9-0.12.0.tar.gz", "binary_size": 198640369, "checksum_link": "https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.2%2B9/OpenJDK11U-jdk_x64_linux_openj9_11.0.2_9_openj9-0.12.0.tar.gz.sha256.txt", "version": "11", "version_data": { "openjdk_version": "11.0.2+9", "semver": "11.0.2+9" }, "heap_size": "normal", "download_count": 87, "updated_at": "2019-01-30T19:45:06Z" } ]
Any insights?
Yeah, we had some tagging issues today that the team are working through, hope to have this cleaned up shortly!
Interesting. Shouldn't be any duplicates now. Hopefully someone can get this diagnosed tomorrow
This error looks correct. There are two variants of the linux x64 jdk. You'll need to use the 'heap_size' (normal or large) parameter to narrow down the search.
Following link works.
https://api.adoptopenjdk.net/v2/binary/releases/openjdk11?openjdk_impl=openj9&os=linux&arch=x64&release=latest&heap_size=normal&type=jdk
Thanks you guys quick response, problem solved!