Closed dubek closed 2 years ago
After merging #30, get_secret_policy and get_keyset_policy fail if the polid column has NULL in it.
get_secret_policy
get_keyset_policy
These function should return something like Result<Option<Policy>> (and return Ok(None) if the polid is NULL).
Result<Option<Policy>>
Ok(None)
I will make these changes after your PR is merged.
I have made these changes and would like to review them with you and Tobin before creating another PR.
After merging #30,
get_secret_policy
andget_keyset_policy
fail if the polid column has NULL in it.These function should return something like
Result<Option<Policy>>
(and returnOk(None)
if the polid is NULL).