Fix: incorrect capacity unit for OSS traffic limit
This commit is contained in:
@@ -248,6 +248,9 @@ func (handler Driver) Source(
|
||||
signOptions = append(signOptions, oss.ResponseContentDisposition("attachment; filename=\""+url.PathEscape(fileName)+"\""))
|
||||
}
|
||||
if speed > 0 {
|
||||
// Byte 转换为 bit
|
||||
speed *= 8
|
||||
|
||||
// OSS对速度值有范围限制
|
||||
if speed < 819200 {
|
||||
speed = 819200
|
||||
|
||||
Reference in New Issue
Block a user