Skip to content

Commit 073b9f3

Browse files
committed
Fix installer when container already exists
1 parent 64ae38b commit 073b9f3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/UmbracoFileSystemProviders.Azure.Installer/InstallerController.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,8 @@ 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.CreateIfNotExists();
460+
blobContainer.CreateIfNotExists();
461+
return true;
461462
}
462463
catch (Exception e)
463464
{

0 commit comments

Comments
 (0)