[11.x] fix: remove use of Redis::COMPRESSION_ZSTD_MIN #51346
Merged
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.
Hello!
Related Issue: phpredis/phpredis#2487
php: 8.2
phpredis: 6.0.2
When running the tests locally I would receive ~40 failures for
Undefined constant Redis::COMPRESSION_ZSTD_MIN
. After a lot of debugging/recompiling phpredis/git bisecting I finally discovered that the constant was removed between phpredis 5.7.3 and 6.0.0 (COMPRESSION_ZSTD_MAX
andCOMPRESSION_ZSTD_DEFAULT
are still defined).Given that this constant is only referenced in the tests and other tests cases cover the max and default compression constants, I just opted to remove the references to this particular constant.
Thanks!