Skip to content

Commit

Permalink
feat(aliyundrive_open): 尝试使用多线程下载-tv接口-本机代理
Browse files Browse the repository at this point in the history
  • Loading branch information
Three-taile-dragon committed Oct 13, 2024
1 parent acec3ac commit 9d3fc3a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions drivers/aliyundrive_open/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,10 @@ func (d *AliyundriveOpen) link(ctx context.Context, file model.Obj) (*model.Link
}
exp := time.Minute
return &model.Link{
URL: url,
Expiration: &exp,
URL: url,
Expiration: &exp,
Concurrency: 5,
PartSize: 10 * utils.MB,
}, nil
}

Expand Down

0 comments on commit 9d3fc3a

Please sign in to comment.