1. 12 Jun, 2020 3 commits
  2. 09 Jun, 2020 9 commits
  3. 06 Jun, 2020 6 commits
  4. 28 May, 2020 18 commits
  5. 25 May, 2020 4 commits
    • antirez's avatar
      Clarify what is happening in PR #7320. · 2e591fc4
      antirez authored
      2e591fc4
    • zhaozhao.zz's avatar
      PSYNC2: second_replid_offset should be real meaningful offset · cbb51fb8
      zhaozhao.zz authored
      After adjustMeaningfulReplOffset(), all the other related variable
      should be updated, including server.second_replid_offset.
      
      Or the old version redis like 5.0 may receive wrong data from
      replication stream, cause redis 5.0 can sync with redis 6.0,
      but doesn't know meaningful offset.
      cbb51fb8
    • Oran Agra's avatar
      add CI for 32bit build · e0fc88b4
      Oran Agra authored
      e0fc88b4
    • antirez's avatar
      Make disconnectSlaves() synchronous in the base case. · e3f864b5
      antirez authored
      Otherwise we run into that:
      
      Backtrace:
      src/redis-server 127.0.0.1:21322(logStackTrace+0x45)[0x479035]
      src/redis-server 127.0.0.1:21322(sigsegvHandler+0xb9)[0x4797f9]
      /lib/x86_64-linux-gnu/libpthread.so.0(+0x11390)[0x7fd373c5e390]
      src/redis-server 127.0.0.1:21322(_serverAssert+0x6a)[0x47660a]
      src/redis-server 127.0.0.1:21322(freeReplicationBacklog+0x42)[0x451282]
      src/redis-server 127.0.0.1:21322[0x4552d4]
      src/redis-server 127.0.0.1:21322[0x4c5593]
      src/redis-server 127.0.0.1:21322(aeProcessEvents+0x2e6)[0x42e786]
      src/redis-server 127.0.0.1:21322(aeMain+0x1d)[0x42eb0d]
      src/redis-server 127.0.0.1:21322(main+0x4c5)[0x42b145]
      /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf0)[0x7fd3738a3830]
      src/redis-server 127.0.0.1:21322(_start+0x29)[0x42b409]
      
      Since we disconnect all the replicas and free the replication backlog in
      certain replication paths, and the code that will free the replication
      backlog expects that no replica is connected.
      
      However we still need to free the replicas asynchronously in certain
      cases, as documented in the top comment of disconnectSlaves().
      e3f864b5