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


##########
core/src/services/aliyun_drive/backend.rs:
##########
@@ -370,23 +370,9 @@ impl Access for AliyunDriveBackend {
             
serde_json::from_reader(res.reader()).map_err(new_json_serialize_error)?;
 
         let download_url = self.core.get_download_url(&file.file_id).await?;
-        let req = Request::get(&download_url)
-            .header(header::RANGE, args.range().to_header())
-            .body(Buffer::new())
-            .map_err(new_request_build_error)?;
-
-        let resp = self.core.info.http_client().fetch(req).await?;
-        let status = resp.status();
-        match status {

Review Comment:
   This error is now handled in 
https://github.com/apache/opendal/blob/753b8e327652f77a885f7b0f40864b585a81be81/core/src/services/aliyun_drive/core.rs#L105
   
   This is consistent with other error handling such as 
`AliyunDriveCore::upload` method



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