Skip to content

Commit

Permalink
IGNITE-22756 Fix dns_failure ducktest to work with jdk 17 (#11440)
Browse files Browse the repository at this point in the history
  • Loading branch information
skorotkov authored Jul 17, 2024
1 parent ad1bbcf commit b6bd4b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public static void main(String[] args) throws Exception {

if ("1.8".equals(jdkVer))
installJdk8();
else if ("11".equals(jdkVer))
else if ("11".equals(jdkVer) || "17".equals(jdkVer))
installJdk11();
else
throw new IllegalArgumentException("Unsupported JDK version: " + jdkVer);
Expand Down

0 comments on commit b6bd4b8

Please sign in to comment.