I think there's a bug in Excalibur-4.1 source code.

In newPoolable method of JdbcConnectionPool, I can see:
...
thread.wait(endTime - curMillis);
...

But wait method of Thread class, should stay in a synchronized block, like this:
synchronized (thread) {
  thread.wait(endTime - curMillis);
}

Right?

Sandra

-----------------------------------------------------

messaggio inviato con Freemail by superEva
http://www.supereva.it

-----------------------------------------------------


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to