redisworks
redisworks copied to clipboard
Issue in handling boolean value
When I use redisworks to set the True/False value, it can successfully set. But when read it, the evaluation result will be always True.
Hi @ckdanny Thanks for reporting this. I will check.
This is happening cause in get_obj
method, value = actual_type(value)
is called i.e., which evaluates to value = bool("False")
which is always going to be true.
Redisworks 0.4.0 is released and this issue is resolved.