Skip to content

Commit

Permalink
Fixes #631
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanFeldman committed Jun 14, 2021
1 parent 30f7cdb commit a4fde74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Transport/DelayDelivery/LockManager.cs
Expand Up @@ -79,7 +79,7 @@ async Task EnsureContainerExists(CancellationToken cancellationToken)
{
if (created == false)
{
await containerClient.CreateIfNotExistsAsync(PublicAccessType.BlobContainer, null, null, cancellationToken).ConfigureAwait(false);
await containerClient.CreateIfNotExistsAsync(PublicAccessType.None, null, null, cancellationToken).ConfigureAwait(false);
created = true;
}
}
Expand Down

0 comments on commit a4fde74

Please sign in to comment.