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.
We are passing prepared_name (namespace appended) to BU cache's expire method which again appends the namespace. Due to this, the following commands get executed:
SADD "CB-prod:Review:ws_cache_de0eedbf-e2d9-3a64-8e3e-51d68994cee3" "\xd9\x92list_entity_id=de0eedbf-e2d9-3a64-8e3e-51d68994cee3_user_id=None_sort=published_on_sort_order=None_limit=1_offset=0_language=None_review_type=None"
PEXPIRE "CB-prod:Review:CB-prod:Review:ws_cache_de0eedbf-e2d9-3a64-8e3e-51d68994cee3" "1800000"
As we can see, the pexpired key is wrong. Therefore, the sadd'ed keys live with infinite TTL in redis. Fix this by passing the un-prepared name to expire method.