Skip to content

Commit a8c17ff

Browse files
committed
Something has changed for storage in new regions (e.g. UK South) so this check no longer works, it might be that upgrading the WindowsAzure.Storage package would also solve it but switching to CreateIfNotExists does the job
1 parent fcd720f commit a8c17ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/UmbracoFileSystemProviders.Azure.Installer/InstallerController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ private static bool TestAzureCredentials(string connectionString, string contain
457457
CloudBlobContainer blobContainer = cloudBlobClient.GetContainerReference(containerName);
458458

459459
// This should fully check that the connection works.
460-
return blobContainer.Exists();
460+
return blobContainer.CreateIfNotExists();
461461
}
462462
catch (Exception e)
463463
{

0 commit comments

Comments
 (0)