We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
set
Validation fails unexpectedly on sets with >1 member loaded via the replicate command with --mode snapshot
replicate
--mode snapshot
$ riot -d <target> replicate <target> --mode compare --show-diffs 2>&1 | grep WARNING 20:12:40.923 WARNING com.redis.riot.cli.Replicate : Value mismatch for string my_stringXYZ at offset 17 20:12:40.923 WARNING com.redis.riot.cli.Replicate : Value mismatch for set my_set: [] <> [] 20:12:41.246 WARNING com.redis.riot.cli.common.KeyComparisonStepListener : Verification failed: OK=2 Missing=0 Values=2 TTLs=0 Types=0
Checking the mismatch via redis-cli proves that the sets should be equal
redis-cli
$ redis-cli <source> smembers my_set 1) "000000000021" 2) "000000000026" $ redis-cli <target> smembers my_set 1) "000000000026" 2) "000000000021"
I would expect the validation check for my_set to pass
my_set
The text was updated successfully, but these errors were encountered:
c96f165
🎉 This issue has been resolved in v3.1.1 (Release Notes)
v3.1.1
Sorry, something went wrong.
No branches or pull requests
Validation fails unexpectedly on sets with >1 member loaded via the
replicate
command with--mode snapshot
Checking the mismatch via
redis-cli
proves that the sets should be equalI would expect the validation check for
my_set
to passThe text was updated successfully, but these errors were encountered: