The GitHub Actions job "CI" on kvrocks.git has succeeded. Run started by GitHub user git-hulk (triggered by git-hulk).
Head commit for run: 8a939dd2d065a586923d787960e7f2c57c1e025a / hulk <hulk.webs...@gmail.com> Fix incorrect ZRANGE command response format in RESP3 mode (#2132) Currently, ZRANGE command with scores will always return an array of string and double type: ``` 1) "a" 2) (double) 1.2 3) "b" 4) (double) 1.5 ``` But in Redis, it will return an array of arrays if the RESP3 was enabled: ``` 1) 1) "a" 2) (double) 1.2 2) 1) "b" 2) (double) 1.5 ``` This different behavior cannot be found with go-redis client since it will be always parsed as the corrent member-score pairs, but using ZRANGE command in Lua script this inconsistent result format might be awareness. Report URL: https://github.com/apache/kvrocks/actions/runs/8122146401 With regards, GitHub Actions via GitBox