~axino/redis/+git/trunk:stream-propagation-fix-2

Last commit made on 2020-04-17
Get this branch:
git clone -b stream-propagation-fix-2 https://git.launchpad.net/~axino/redis/+git/trunk

Branch merges

Branch information

Name:
stream-propagation-fix-2
Repository:
lp:~axino/redis/+git/trunk

Recent commits

7ca1846... by antirez <email address hidden>

Streams: now we can just use alsoPropagate().

Becuase of previous changes, alsoPropagate() will just do propagate()
when called out of the context of a command execution. For instance when
called from blocked.c because of blocking streams operations.

211e985... by antirez <email address hidden>

alsoPropagate(): just propagate() when out of context.

7cb97aa... by antirez <email address hidden>

Move handleClientsBlockedOnKeys() outside processCommand().

In preparation for further changes. The idea is that what happens
in handleClientsBlockedOnKeys() is an "out of context" thing that
should not see server.current_client set to anything special.

c479eac... by antirez <email address hidden>

Fix XCLAIM propagation in AOF/replicas for blocking XREADGROUP.

See issue #7105.

002052f... by antirez <email address hidden>

A few comments and name changes for #7103.

eae2615... by antirez <email address hidden>

Merge branch 'unstable' of github.com:/antirez/redis into unstable

a71a6b5... by Salvatore Sanfilippo <email address hidden>

Merge pull request #7103 from oranagra/run_solo_test

testsuite run the defrag latency test solo

ac441c7... by Salvatore Sanfilippo <email address hidden>

Merge pull request #7087 from IAmATeaPot418/patch-6

Adding acllog-max-len to Redis.conf

b9fa42a... by Oran Agra <email address hidden>

testsuite run the defrag latency test solo

this test is time sensitive and it sometimes fail to pass below the
latency threshold, even on strong machines.

this test was the reson we're running just 2 parallel tests in the
github actions CI, revering this.

37b135a... by antirez <email address hidden>

Update SDS to latest version.