Braedon-Wooding-Displayr commented on code in PR #742:
URL:
https://github.com/apache/arrow-rs-object-store/pull/742#discussion_r3409223209
##########
src/azure/client.rs:
##########
@@ -829,13 +958,11 @@ impl AzureClient {
pub(crate) async fn get_blob_tagging(&self, path: &Path) ->
Result<HttpResponse> {
let credential = self.get_credential().await?;
let url = self.config.path_url(path);
- let sensitive = credential
- .as_deref()
- .map(|c| c.sensitive_request())
- .unwrap_or_default();
+ let sensitive = self.config.is_sensitive(&credential);
let response = self
.client
.get(url.as_str())
+ .with_azure_encryption_headers(&self.config.encryption_headers)
Review Comment:
Same as delete I've also added a small comment and removed this set.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]