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 efe75af commit 2b4d706Copy full SHA for 2b4d706
src/test/java/com/microsoft/sqlserver/jdbc/KerberosTest.java
@@ -105,8 +105,7 @@ public void testKerberosConnectionWithDefaultJaasConfig() {
105
createKerberosConnection(connectionString);
106
107
Configuration config = Configuration.getConfiguration();
108
- AppConfigurationEntry[] entries = config
109
- .getAppConfigurationEntry(SQLServerDriverStringProperty.JAAS_CONFIG_NAME.getDefaultValue());
+ AppConfigurationEntry[] entries = config.getAppConfigurationEntry("CLIENT_CONTEXT_NAME");
110
Assertions.assertNotNull(entries);
111
Assertions.assertTrue(entries.length > 0);
112
Assertions.assertEquals("com.sun.security.auth.module.Krb5LoginModule", entries[0].getLoginModuleName());
0 commit comments