Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Cosmos response header key #311

Merged
merged 1 commit into from
Jun 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions sdk/core/src/headers/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,5 @@ pub const VERSION: &str = "x-ms-version";
pub const PROPERTIES: &str = "x-ms-properties";
pub const NAMESPACE_ENABLED: &str = "x-ms-namespace-enabled";
pub const MAX_ITEM_COUNT: &str = "x-ms-max-item-count";
pub const ITEM_COUNT: &str = "x-ms-item-count";
pub const ITEM_TYPE: &str = "x-ms-item-type";
4 changes: 2 additions & 2 deletions sdk/core/src/headers/utilities.rs
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,8 @@ pub fn content_type_from_headers(headers: &HeaderMap) -> Result<&str, Error> {

pub fn item_count_from_headers(headers: &HeaderMap) -> Result<u32, Error> {
Ok(headers
.get(crate::headers::MAX_ITEM_COUNT)
.ok_or_else(|| Error::HeaderNotFound(crate::MAX_ITEM_COUNT.to_owned()))?
.get(crate::headers::ITEM_COUNT)
.ok_or_else(|| Error::HeaderNotFound(crate::ITEM_COUNT.to_owned()))?
.to_str()?
.parse()?)
}
Expand Down