1. 24 Apr, 2020 1 commit
  2. 15 Apr, 2020 3 commits
  3. 08 Apr, 2020 1 commit
  4. 25 Mar, 2020 1 commit
  5. 05 Mar, 2020 1 commit
  6. 12 Feb, 2020 8 commits
  7. 10 Jan, 2020 1 commit
  8. 17 Dec, 2019 1 commit
  9. 30 Sep, 2019 2 commits
  10. 12 Sep, 2019 2 commits
  11. 07 Jun, 2019 1 commit
  12. 08 Apr, 2019 1 commit
  13. 05 Mar, 2019 1 commit
  14. 27 Feb, 2019 1 commit
  15. 26 Feb, 2019 1 commit
  16. 25 Feb, 2019 2 commits
  17. 22 Feb, 2019 2 commits
  18. 21 Feb, 2019 5 commits
  19. 13 Feb, 2019 2 commits
  20. 12 Feb, 2019 1 commit
  21. 11 Feb, 2019 2 commits
    • antirez's avatar
      ACL: return error when removing a non existing password. · f0c7cfa4
      antirez authored
      Otherwise it's very simple for an human mistake to think a password is
      removed because of a typo in the ACL SETUSER myuser <somepass command
      line.
      f0c7cfa4
    • antirez's avatar
      ACL: ACLFreeUserAndKillClients(): free user later. · df346bca
      antirez authored
      Soon or later we may have code in freeClient() that may have to deal
      with ACLs. Imagine for instance the command proposed multiple times (not
      sure if this will ever be accepted but still...):
      
          ONCLOSE DEL mykey
      
      Accumulating commands to run when a client is disconnected. Now the
      function is compatible with such use cases.
      
      Related to #5829.
      df346bca