Re: LDAP+Kerberos - JDK-8149521 also in JDK9

2016-05-06 Thread Balchandra Vaidya
bug still indeed exists, as Balchandra Vaidya requested. From what I can see error hasn't been fixed in jdk9 either: http://hg.openjdk.java.net/jdk9/jdk9/jdk/file/f38c0650a60f/src/java.naming/share/classes/com/sun/jndi/ldap/ServiceLocator.java Thanks and regards, Bill

Request to review JDK-8028094

2013-11-19 Thread Balchandra Vaidya
Hi, Here is one possible solution for the issue JDK-8028094. http://cr.openjdk.java.net/~bvaidya/8/8028094/webrev/ I am not sure pkill is available in all Unix flavor at /usr/bin directory, but it is present in Solaris and OEL 6. I have tested on Solaris and OEL and "sleep " is no longer le

Re: Request to review JDK-8028094

2013-11-19 Thread Balchandra Vaidya
Thanks Chris. Regards Balchandra On 19/11/2013 14:23, Chris Hegarty wrote: Look ok to me Balchandra. I can sponsor this for you. -Chris. On 11/19/2013 02:07 PM, Balchandra Vaidya wrote: Hi, Here is one possible solution for the issue JDK-8028094. http://cr.openjdk.java.net/~bvaidya/8

Request to review JDK-8028094

2013-11-19 Thread Balchandra Vaidya
Hi, Here is one possible solution for the issue JDK-8028094. http://cr.openjdk.java.net/~bvaidya/8/8028094/webrev/ I am not sure pkill is available in all Unix flavor at /usr/bin directory, but it is present in Solaris and OEL 6. I have tested on Solaris and OEL and "sleep " is no longe

Re: Request to review JDK-8028094

2013-11-20 Thread Balchandra Vaidya
running it. We should do the same for any other Unix command like pkill. Agree. I will work it. Thanks Balchandra But we should also try to think of better solutions than having to use pkill. On Tue, Nov 19, 2013 at 6:07 AM, Balchandra Vaidya mailto:balchandra.vai...@oracle.com>>

Re: Request to review JDK-8028094

2013-11-20 Thread Balchandra Vaidya
6:07 AM, Balchandra Vaidya mailto:balchandra.vai...@oracle.com>> wrote: Hi, Here is one possible solution for the issue JDK-8028094. http://cr.openjdk.java.net/~bvaidya/8/8028094/webrev/ <http://cr.openjdk.java.net/%7Ebvaidya/8/8028094/webrev/> I am not s

Re: Request to review JDK-8028094

2013-11-20 Thread Balchandra Vaidya
s = +(System.nanoTime() - startTime) / (1024L * 1024L); +check(elapsedTimeMillis < timeout); + check(!reader.isAlive()); } } catch (Throwable t) { unexpected(t); } On Tue, Nov 19, 2013 at 4:21 AM, Balchandra Vaidya mailto

Re: Request to review JDK-8028094

2013-11-27 Thread Balchandra Vaidya
} +// Try to clean up the sleep process, but don't fret about it. +try { +new ProcessBuilder("/usr/bin/pkill", "-f", "sleep ") + .start(); +} catch (IOE