JMS SingleConnectionFactory performs start call within connection monitor (for Oracle AQ)

This commit is contained in:
Juergen Hoeller 2009-07-09 10:27:02 +00:00
parent 542b88fb04
commit a8fa8f4942
1 changed files with 1 additions and 1 deletions

View File

@ -509,8 +509,8 @@ public class SingleConnectionFactory
}
else if (method.getName().equals("start")) {
// Handle start method: track started state.
this.target.start();
synchronized (connectionMonitor) {
this.target.start();
started = true;
}
return null;