see-quick commented on code in PR #14011: URL: https://github.com/apache/kafka/pull/14011#discussion_r1263405326
########## tests/kafkatest/services/security/minikdc.py: ########## @@ -107,6 +107,12 @@ def start_node(self, node): cmd = "for file in %s; do CLASSPATH=$CLASSPATH:$file; done;" % core_libs_jar cmd += " for file in %s; do CLASSPATH=$CLASSPATH:$file; done;" % core_dependant_test_libs_jar cmd += " export CLASSPATH;" + # exports sun.security.krb5 avoiding Java 17 error: + # Exception in thread "main" java.lang.IllegalAccessException: + # class kafka.security.minikdc.MiniKdc cannot access class sun.security.krb5.Config + # (in module java.security.jgss) because module java.security.jgss does not export + # sun.security.krb5 to unnamed module @24959ca4 Review Comment: Okay, I will change it :) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org