1. 25 Mar, 2020 34 commits
  2. 12 Mar, 2020 6 commits
    • antirez's avatar
      Update linenoise. · 916dd79f
      antirez authored
      916dd79f
    • lifubang's avatar
      add askpass mode · c0c67c9b
      lifubang authored
      
      Signed-off-by: default avatarlifubang <lifubang@acmcoder.com>
      c0c67c9b
    • lifubang's avatar
    • Jamie Scott's avatar
      Remove default guidance in Redis.conf · e5a063bc
      Jamie Scott authored
      Removing the default guidance in Redis.conf since this is not an available value.
      e5a063bc
    • Jamie Scott's avatar
      Update Redis.conf to improve TLS usability · d28cbaf7
      Jamie Scott authored
      When using TLS with a Redis.conf file the line for TLS reading tls-cert-file redis.crt tls-key-file redis.key is interpreted as one complete directive. I am separating this on two separate lines to improve usability so users do not get the below error.
      
      ubuntu@ip-172-31-29-250:~/redis-6.0-rc1$ ./src/redis-server redis.conf 
      
      *** FATAL CONFIG FILE ERROR ***
      Reading the configuration file, at line 145
      >>> 'tls-cert-file redis.crt tls-key-file redis.key'
      wrong number of arguments
      ubuntu@ip-172-31-29-250:~/redis-6.0-rc1$ vi redis.conf 
      ubuntu@ip-172-31-29-250:~/redis-6.0-rc1$ ./src/redis-server redis.conf 
      23085:C 04 Mar 2020 01:58:12.631 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
      23085:C 04 Mar 2020 01:58:12.631 # Redis version=5.9.101, bits=64, commit=00000000, modified=0, pid=23085, just started
      23085:C 04 Mar 2020 01:58:12.631 # Configuration loaded
      23085:M 04 Mar 2020 01:58:12.632 * Increased maximum number of open files to 10032 (it was originally set to 1024).
      d28cbaf7
    • Johannes Truschnigg's avatar
      Signal systemd readiness atfer Partial Resync · 23d5e8b8
      Johannes Truschnigg authored
      "Partial Resynchronization" is a special variant of replication success
      that we have to tell systemd about if it is managing redis-server via a
      Type=Notify service unit.
      23d5e8b8