mirror of https://github.com/apache/activemq.git
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@418123 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
35fb3d1c84
commit
f5ffb39243
|
@ -256,10 +256,12 @@ public class MulticastDiscoveryAgent implements DiscoveryAgent,Runnable{
|
|||
String str=new String(packet.getData(),packet.getOffset(),packet.getLength());
|
||||
processData(str);
|
||||
}
|
||||
}catch(SocketTimeoutException se){
|
||||
} catch(SocketTimeoutException se){
|
||||
// ignore
|
||||
}catch(IOException e){
|
||||
log.error("failed to process packet: "+e);
|
||||
} catch(IOException e){
|
||||
if( started.get() ) {
|
||||
log.error("failed to process packet: "+e);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue