mirror of https://github.com/rclone/rclone.git
azure-files: fix storage base url
Documented in https://learn.microsoft.com/en-us/azure/storage/common/storage-account-overview
This commit is contained in:
parent
743ea6ac26
commit
8503282a5a
|
@ -65,7 +65,7 @@ import (
|
||||||
const (
|
const (
|
||||||
maxFileSize = 4 * fs.Tebi
|
maxFileSize = 4 * fs.Tebi
|
||||||
defaultChunkSize = 4 * fs.Mebi
|
defaultChunkSize = 4 * fs.Mebi
|
||||||
storageDefaultBaseURL = "core.windows.net" // FIXME not sure this is correct
|
storageDefaultBaseURL = "file.core.windows.net"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
|
Loading…
Reference in New Issue