We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b824d9 commit 83bd56cCopy full SHA for 83bd56c
org.springframework.jms/src/main/java/org/springframework/jms/connection/SingleConnectionFactory.java
@@ -510,8 +510,10 @@ else if (method.getName().equals("setExceptionListener")) {
510
else if (method.getName().equals("start")) {
511
// Handle start method: track started state.
512
synchronized (connectionMonitor) {
513
- this.target.start();
514
- started = true;
+ if (!started) {
+ this.target.start();
515
+ started = true;
516
+ }
517
}
518
return null;
519
0 commit comments