jorgehermo9 commented on code in PR #6113:
URL: https://github.com/apache/opendal/pull/6113#discussion_r2062667031


##########
core/src/services/webhdfs/core.rs:
##########
@@ -122,12 +124,37 @@ impl WebhdfsCore {
         if let Some(content_type) = args.content_type() {
             req = req.header(CONTENT_TYPE, content_type);
         };
+
         let req = req.body(body).map_err(new_request_build_error)?;
 
-        Ok(req)
+        self.info.http_client().send(req).await
+    }
+
+    pub async fn webhdfs_rename_object(&self, from: &str, to: &str) -> 
Result<Response<Buffer>> {

Review Comment:
   Moved the functions so `webhdfs_init_append` is next to `webhdfs_append`



-- 
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]

Reply via email to