We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4dfebe commit 30f3c49Copy full SHA for 30f3c49
fluss-common/src/test/java/org/apache/fluss/security/auth/sasl/gssapi/GssapiSaslAuthTest.java
@@ -93,6 +93,9 @@ void setup() throws Exception {
93
// and force it to recognize the new settings.
94
File customKrb5Conf = new File(workDir, "krb5-custom-" + UUID.randomUUID() + ".conf");
95
Files.write(customKrb5Conf.toPath(), krb5Content.getBytes());
96
+
97
+ // Point the JVM to use our custom krb5.conf for Kerberos operations.
98
+ System.setProperty("java.security.krb5.conf", customKrb5Conf.getAbsolutePath());
99
}
100
101
0 commit comments