mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-21 05:09:13 +00:00
JMS SingleConnectionFactory uses minimized number of start calls (for Oracle AQ; SPR-5987)
git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1716 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
+4
-2
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user