Description
This really is only a problem when there is some form of long blocking script submitted and only on a session when done in parallel, like:
final ResultSet first = client.submit( "Object mon1 = 'mon1';\n" + "synchronized (mon1) {\n" + " mon1.wait();\n" + "} "); final ResultSet second = client.submit( "Object mon2 = 'mon2';\n" + "synchronized (mon2) {\n" + " mon2.wait();\n" + "}");