From 8571eaf425704d0345ffb0fb23637f0c5ac0673b Mon Sep 17 00:00:00 2001 From: Oksana <142890647+oks-maytech@users.noreply.github.com> Date: Mon, 18 Dec 2023 16:15:13 +0200 Subject: [PATCH] azure-files: fix storage base url Documented in https://learn.microsoft.com/en-us/azure/storage/common/storage-account-overview --- backend/azurefiles/azurefiles.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/azurefiles/azurefiles.go b/backend/azurefiles/azurefiles.go index fd8b4a06e..95275f6d7 100644 --- a/backend/azurefiles/azurefiles.go +++ b/backend/azurefiles/azurefiles.go @@ -65,7 +65,7 @@ import ( const ( maxFileSize = 4 * fs.Tebi defaultChunkSize = 4 * fs.Mebi - storageDefaultBaseURL = "core.windows.net" // FIXME not sure this is correct + storageDefaultBaseURL = "file.core.windows.net" ) func init() {