diff --git a/sdk/data_cosmos/src/resource_quota.rs b/sdk/data_cosmos/src/resource_quota.rs index 1168ceeeba..91d9fe7097 100644 --- a/sdk/data_cosmos/src/resource_quota.rs +++ b/sdk/data_cosmos/src/resource_quota.rs @@ -81,11 +81,7 @@ pub(crate) fn resource_quotas_from_str( } else if let Some(stripped) = token.strip_prefix(AUTH_POLICY_ELEMENTS) { v.push(ResourceQuota::AuthPolicyElements(parseu64(stripped)?)); } else { - return Err(Error::with_message(ErrorKind::DataConversion, || { - format!( - "resource quota has an unrecognized part - part: \"{token}\" full string: \"{full_string}\"" - ) - })); + warn!("resource quota has an unrecognized part - part: \"{token}\" full string: \"{full_string}\"") } trace!("v == {:#?}", v);