jorgehermo9 commented on code in PR #5274: URL: https://github.com/apache/opendal/pull/5274#discussion_r1826539357
########## core/src/services/azblob/backend.rs: ########## @@ -545,7 +547,28 @@ impl Access for AzblobBackend { let status = resp.status(); match status { - StatusCode::OK => parse_into_metadata(path, resp.headers()).map(RpStat::new), + StatusCode::OK => { + let headers = resp.headers(); + let mut meta = parse_into_metadata(path, headers)?; + // TODO: Refactor in common with s3 metadata parsing + // do the same as in parse_into_metadata... but for user metadata + let user_meta: HashMap<String, String> = headers Review Comment: I have yet to refactor this along with the S3 user metadata. -- 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: commits-unsubscr...@opendal.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org