JMS SingleConnectionFactory uses minimized number of start calls (for Oracle AQ; SPR-5987)
This commit is contained in:
parent
6b824d9af7
commit
83bd56c6de
|
|
@ -510,8 +510,10 @@ public class SingleConnectionFactory
|
|||
else if (method.getName().equals("start")) {
|
||||
// Handle start method: track started state.
|
||||
synchronized (connectionMonitor) {
|
||||
this.target.start();
|
||||
started = true;
|
||||
if (!started) {
|
||||
this.target.start();
|
||||
started = true;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue