Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8314063 : The socket is not closed in Connection::createSocket when the handshake failed for LDAP connection #15294

Closed
wants to merge 15 commits into from
Closed
4 changes: 2 additions & 2 deletions test/jdk/com/sun/jndi/ldap/LdapSSLHandshakeFailureTest.java
Original file line number Diff line number Diff line change
@@ -71,8 +71,8 @@ public static void main(String args[]) throws Exception {
env.put("java.naming.ldap.version", "3");
env.put("com.sun.jndi.ldap.connect.timeout", "1000");
env.put(Context.SECURITY_AUTHENTICATION, "Simple");
env.put(Context.SECURITY_PRINCIPAL, "cn=orcladmin");
env.put(Context.SECURITY_CREDENTIALS, "password1");
env.put(Context.SECURITY_PRINCIPAL, "cn=principal");
env.put(Context.SECURITY_CREDENTIALS, "justpassword");
try {
LdapContext ctx = new InitialLdapContext(env, null);
ctx.close();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The context can be closed in finally block