feat(spring-data): Add option to disable filtering of 'OK' responses in pipelines#6708
Merged
mrniko merged 3 commits intoredisson:masterfrom Sep 24, 2025
Conversation
…ns/Pipelines redisson#6685 Signed-off-by: pyq <pengyongqiang888@gmail.com>
efc55a1 to
e8c9e34
Compare
Member
|
any update? |
3769385 to
e8c9e34
Compare
Signed-off-by: pengyongqiang666 <pengyongqiang888@gmail.com>
Contributor
Author
|
I have submitted code |
Member
|
Looks good. Please apply this change to all modules. |
Apply changes across versions 24-35 of redisson-spring-data modules. Signed-off-by: pyq <pengyongqiang888@gmail.com>
7784bba to
f91ab58
Compare
Contributor
Author
|
@mrniko I have completed applying the filterOkResponses changes to all redisson-spring-data modules as requested. Applied to versions 24-35 of redisson-spring-data modules. |
Member
|
Thanks for contribution! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #6685
This PR addresses an inconsistency where Redisson's Spring Data pipeline/transaction implementation filters
"OK"responses, while Lettuce and Jedis do not. This change makes the filtering behavior configurable to improve client substitutability.Changes:
filterOkResponsesproperty toRedissonConnectionFactory.falseto align with Lettuce/Jedis behavior.true.For this initial review, I have only modified the
redisson-spring-data-27module. Upon approval, I will apply the same changes across all otherredisson-spring-data-*versions.