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

In https://github.com/redis/redis/pull/14235 we forgot to skip vset
module command `VRANGE` for schema validator.
This commit is contained in:
debing.sun 2025-10-10 19:27:07 +08:00 committed by GitHub
parent 133989ef0f
commit df28ad35e8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -71,6 +71,7 @@ IGNORED_COMMANDS = {
"VSETATTR",
"VSIM",
"VISMEMBER",
"VRANGE",
}
class Request(object):