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
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
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
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
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>>
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
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
}
+// Try to clean up the sleep process, but don't fret
about it.
+try {
+new ProcessBuilder("/usr/bin/pkill", "-f", "sleep
")
+ .start();
+} catch (IOE