mirror of https://github.com/apache/activemq.git
Lowered the logging level of empty messages returned. For background see : http://www.nabble.com/HTTP-%3A-Received-null-command-tp14997476s2354p14997476.html
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@613889 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
01cef910db
commit
b16d55f79a
|
@ -128,7 +128,7 @@ public class HttpClientTransport extends HttpTransportSupport {
|
||||||
DataInputStream stream = new DataInputStream(httpMethod.getResponseBodyAsStream());
|
DataInputStream stream = new DataInputStream(httpMethod.getResponseBodyAsStream());
|
||||||
Object command = (Object)getTextWireFormat().unmarshal(stream);
|
Object command = (Object)getTextWireFormat().unmarshal(stream);
|
||||||
if (command == null) {
|
if (command == null) {
|
||||||
LOG.warn("Received null command from url: " + remoteUrl);
|
LOG.debug("Received null command from url: " + remoteUrl);
|
||||||
} else {
|
} else {
|
||||||
doConsume(command);
|
doConsume(command);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue