diff --git a/sdk/data_cosmos/src/headers/mod.rs b/sdk/data_cosmos/src/headers/mod.rs index 4b68e53325..f643e2bbef 100644 --- a/sdk/data_cosmos/src/headers/mod.rs +++ b/sdk/data_cosmos/src/headers/mod.rs @@ -11,7 +11,7 @@ pub(crate) const HEADER_CONSISTENCY_LEVEL: HeaderName = pub(crate) const HEADER_SESSION_TOKEN: HeaderName = HeaderName::from_static("x-ms-session-token"); pub(crate) const HEADER_ALLOW_MULTIPLE_WRITES: HeaderName = HeaderName::from_static("x-ms-cosmos-allow-tentative-writes"); -pub(crate) const HEADER_A_IM: HeaderName = HeaderName::from_static("A-IM"); +pub(crate) const HEADER_A_IM: HeaderName = HeaderName::from_static("a-im"); pub(crate) const HEADER_DOCUMENTDB_PARTITIONRANGEID: HeaderName = HeaderName::from_static("x-ms-documentdb-partitionkeyrangeid"); pub(crate) const HEADER_DOCUMENTDB_PARTITIONKEY: HeaderName = diff --git a/sdk/data_tables/src/operations/list_tables.rs b/sdk/data_tables/src/operations/list_tables.rs index 2b833706dd..01c79f4943 100644 --- a/sdk/data_tables/src/operations/list_tables.rs +++ b/sdk/data_tables/src/operations/list_tables.rs @@ -81,7 +81,7 @@ impl TryFrom for ListTablesResponse { let continuation_next_table_name = response .headers() - .get_optional_string(&HeaderName::from_static("x-ms-continuation-NextTableName")); + .get_optional_string(&HeaderName::from_static("x-ms-continuation-nexttablename")); Ok(ListTablesResponse { common_storage_response_headers: response.headers().try_into()?, diff --git a/sdk/data_tables/src/operations/query_entity.rs b/sdk/data_tables/src/operations/query_entity.rs index c416806c24..1a371d9ec7 100644 --- a/sdk/data_tables/src/operations/query_entity.rs +++ b/sdk/data_tables/src/operations/query_entity.rs @@ -115,11 +115,11 @@ impl TryFrom for QueryEnti let headers = response.headers(); let next_partition_key = headers.get_optional_string(&HeaderName::from_static( - "x-ms-continuation-NextPartitionKey", + "x-ms-continuation-nextpartitionkey", )); let next_row_key = - headers.get_optional_string(&HeaderName::from_static("x-ms-continuation-NextRowKey")); + headers.get_optional_string(&HeaderName::from_static("x-ms-continuation-nextrowkey")); Ok(QueryEntityResponse { common_storage_response_headers: response.headers().try_into()?,