A DO storage get results a Result<>. For the DedupCache we used unwrap_or_default to handle the case the key doesn't exist yet. That is wrong, as it will discard other errors. A convenient helper is get_maybe from this PR which returns a Result<Option<>>. We need to check other uses of DO storage for this error.