mirror of
https://github.com/redis/redis.git
synced 2025-12-18 21:46:08 -05:00
Add VRANGE to ignored commands for schemas validator (#14426)
Some checks are pending
CI / test-ubuntu-latest (push) Waiting to run
CI / test-sanitizer-address (push) Waiting to run
CI / build-debian-old (push) Waiting to run
CI / build-macos-latest (push) Waiting to run
CI / build-32bit (push) Waiting to run
CI / build-libc-malloc (push) Waiting to run
CI / build-centos-jemalloc (push) Waiting to run
CI / build-old-chain-jemalloc (push) Waiting to run
Codecov / code-coverage (push) Waiting to run
External Server Tests / test-external-standalone (push) Waiting to run
External Server Tests / test-external-cluster (push) Waiting to run
External Server Tests / test-external-nodebug (push) Waiting to run
Spellcheck / Spellcheck (push) Waiting to run
Some checks are pending
CI / test-ubuntu-latest (push) Waiting to run
CI / test-sanitizer-address (push) Waiting to run
CI / build-debian-old (push) Waiting to run
CI / build-macos-latest (push) Waiting to run
CI / build-32bit (push) Waiting to run
CI / build-libc-malloc (push) Waiting to run
CI / build-centos-jemalloc (push) Waiting to run
CI / build-old-chain-jemalloc (push) Waiting to run
Codecov / code-coverage (push) Waiting to run
External Server Tests / test-external-standalone (push) Waiting to run
External Server Tests / test-external-cluster (push) Waiting to run
External Server Tests / test-external-nodebug (push) Waiting to run
Spellcheck / Spellcheck (push) Waiting to run
In https://github.com/redis/redis/pull/14235 we forgot to skip vset module command `VRANGE` for schema validator.
This commit is contained in:
parent
133989ef0f
commit
df28ad35e8
1 changed files with 1 additions and 0 deletions
|
|
@ -71,6 +71,7 @@ IGNORED_COMMANDS = {
|
|||
"VSETATTR",
|
||||
"VSIM",
|
||||
"VISMEMBER",
|
||||
"VRANGE",
|
||||
}
|
||||
|
||||
class Request(object):
|
||||
|
|
|
|||
Loading…
Reference in a new issue