iep-spring-leader-redis-cluster/src/main/java/com/netflix/iep/leader/redis/RedisClusterLeaderDatabase.java [134:146]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          return false;

        } finally {
          // transactions unset the watch but we also have a get() call before the
          // transaction so we need to make sure to release that watch just in case
          // something goes wrong between the get parsing and transaction execution.
          String unwatchResult = client.unwatch();
          if (unwatchResult == null || !unwatchResult.equals("OK")) {
            logger.warn("Failure unwatching: {}", unwatchResult);
          }
        }
      }
    } catch (Exception ex) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



iep-spring-leader-redis-cluster/src/main/java/com/netflix/iep/leader/redis/RedisClusterLeaderDatabase.java [196:207]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          return false;
        } finally {
          // transactions unset the watch but we also have a get() call before the
          // transaction so we need to make sure to release that watch just in case
          // something goes wrong between the get parsing and transaction execution.
          String unwatchResult = client.unwatch();
          if (unwatchResult == null || !unwatchResult.equals("OK")) {
            logger.warn("Failure unwatching: {}", unwatchResult);
          }
        }
      }
    } catch (Exception ex) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



