Ignore OmnipodException in exchangePackets
This commit is contained in:
parent
71e87aca0e
commit
4fcc5bec6f
1 changed files with 1 additions and 1 deletions
|
@ -266,7 +266,7 @@ public class OmnipodCommunicationService extends RileyLinkCommunicationManager {
|
||||||
OmnipodPacket response = null;
|
OmnipodPacket response = null;
|
||||||
try {
|
try {
|
||||||
response = sendAndListen(packet, responseTimeoutMilliseconds, repeatCount, 9, preambleExtensionMilliseconds, OmnipodPacket.class);
|
response = sendAndListen(packet, responseTimeoutMilliseconds, repeatCount, 9, preambleExtensionMilliseconds, OmnipodPacket.class);
|
||||||
} catch (RileyLinkCommunicationException ex) {
|
} catch (RileyLinkCommunicationException | OmnipodException ex) {
|
||||||
if (isLoggingEnabled()) {
|
if (isLoggingEnabled()) {
|
||||||
LOG.debug("Ignoring exception in exchangePackets", ex);
|
LOG.debug("Ignoring exception in exchangePackets", ex);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue