Hiram R. Chirino 2006-06-29 19:51:13 +00:00
parent 35fb3d1c84
commit f5ffb39243
1 changed files with 5 additions and 3 deletions

View File

@ -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);
}
}
}
}