https://issues.apache.org/jira/browse/AMQ-4643 - have keepAlive task trap the new suppressreplyexception such that it can stay alive and renew a lease on resumption

This commit is contained in:
gtully 2013-09-17 21:01:40 +01:00
parent dd91e8592e
commit 29b90b5812

View File

@ -121,6 +121,8 @@ public abstract class LockableServiceSupport extends ServiceSupport implements L
stop = true; stop = true;
} }
} }
} catch (SuppressReplyException e) {
LOG.warn("locker keepAlive resulted in", e);
} catch (IOException e) { } catch (IOException e) {
LOG.warn("locker keepAlive resulted in", e); LOG.warn("locker keepAlive resulted in", e);
} }