1. 29 Jun, 2020 6 commits
  2. 27 Jun, 2020 1 commit
  3. 26 Jun, 2020 15 commits
  4. 25 Jun, 2020 14 commits
  5. 24 Jun, 2020 4 commits
    • Scott Frederick's avatar
      Provide cluster info in RedisReactiveHealthIndicator · 3b587449
      Scott Frederick authored
      This commit changes the information provided by
      RedisReactiveHealthIndicator to include cluster details when Spring
      Data Redis detects that Redis is running in a clustered configuration.
      This brings the reactive and non-reactive Redis health indicators
      into alignment.
      
      Fixes gh-21514
      3b587449
    • Scott Frederick's avatar
      Merge branch '2.3.x' · dba8ca28
      Scott Frederick authored
      Closes gh-22095
      dba8ca28
    • Scott Frederick's avatar
      Merge branch '2.2.x' into 2.3.x · 72f37c41
      Scott Frederick authored
      Fixes gh-22061 in 2.3.2
      72f37c41
    • Scott Frederick's avatar
      Fix RedisReactiveHealthIndicator in clustered configuration · b2730370
      Scott Frederick authored
      Prior to Spring Data Redis version 2.2.8, the contents of the
      Properties object returned from the
      ReactiveRedisConnection.ServerCommands.info API were the same
      for clustered and non-clustered Redis configurations, containing a set
      of key/value pairs. This allowed ReactiveRedisHealthIndicator to get
      a version property using a well-known key. Starting with Spring Data
      Redis 2.2.8, the info property keys contain a host:port prefix in a
      clustered Redis configuration. This prevented
      ReactiveRedisHealthIndicator from getting the version property as
      before and resulted in the health always being reported as DOWN.
      
      This commit adjusts ReactiveRedisHealthIndicator to detect the
      clustered configuration from Spring Data Redis and find the version
      property for one of the reported cluster nodes.
      
      Fixes gh-22061
      b2730370