Skip to content

Commit

Permalink
Fix installer when container already exists
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeavon committed Oct 19, 2016
1 parent 64ae38b commit 073b9f3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,8 @@ private static bool TestAzureCredentials(string connectionString, string contain
CloudBlobContainer blobContainer = cloudBlobClient.GetContainerReference(containerName);

// This should fully check that the connection works.
return blobContainer.CreateIfNotExists();
blobContainer.CreateIfNotExists();
return true;
}
catch (Exception e)
{
Expand Down

0 comments on commit 073b9f3

Please sign in to comment.