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 990a8d6 commit c001b9eCopy full SHA for c001b9e
activemq-http/src/main/java/org/apache/activemq/transport/http/HttpClientTransport.java
@@ -206,7 +206,11 @@ public void run() {
206
stream.close();
207
}
208
} catch (Exception e) { // handle RuntimeException from unmarshal
209
- onException(IOExceptionSupport.create("Failed to perform GET on: " + remoteUrl + " Reason: " + e.getMessage(), e));
+ if (isStopped() || isStopping()) {
210
+ LOG.debug("While stopping/stopped failed to perform GET on: " + remoteUrl);
211
+ } else {
212
+ onException(IOExceptionSupport.create("Failed to perform GET on: " + remoteUrl + " Reason: " + e.getMessage(), e));
213
+ }
214
break;
215
} finally {
216
if (answer != null) {
0 commit comments