Skip to content

Commit

Permalink
Re-set original_key default value to empty string.
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiocaccamo committed Dec 7, 2022
1 parent b6f6370 commit f91d5e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymemcache/client/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1104,7 +1104,7 @@ def _extract_value(
except MemcacheUnexpectedCloseError:
self.close()
raise
original_key = remapped_keys.get(key)
original_key = remapped_keys.get(key, "")
value = self.serde.deserialize(original_key, value, int(flags))

if expect_cas:
Expand Down

0 comments on commit f91d5e4

Please sign in to comment.