You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
storage: namespacing fixes (#13)
* storage: pluginstorage layer namespacing fix
`PluginStorage` abstraction layer should not re-namespace a key
if it is already namespaced. this is to support using keys directly from
`find_keys` with `PluginStorage.get`, et al.
* tests: update expect mock; only test on py38
* tests: create_redis_pool should return redis_client fixture
* storage: support str and bytes in key namespacing
storage/redis: key prefixing logic change (#12)
if a key is already prefixed correctly, do not prefix it again.
this allows full keys returned by `find_keys` to be used directly
with `get`, `set`, etc.