final String endpointToken = channel.getEndpointToken();
final Transaction tx = jedis.multi();
tx.del(endpointToken);
tx.del(chidLookupKey(channelId));
tx.del(tokenLookupKey(endpointToken));
tx.srem(uaidLookupKey(channel.getUAID()), channelId);
tx.exec();
} catch (final ChannelNotFoundException e) {
logger.debug("ChannelId [" + channelId + "] was not found");
} finally {
jedisPool.returnResource(jedis);