Skip to content

Commit

Permalink
Change the default public access type of auto-init containers to None (
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkatufus authored Apr 13, 2021
1 parent 827f502 commit 9c79c55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void ShouldParseDefaultSnapshotConfig()
blobSettings.ConnectTimeout.Should().Be(TimeSpan.FromSeconds(3));
blobSettings.RequestTimeout.Should().Be(TimeSpan.FromSeconds(3));
blobSettings.VerboseLogging.Should().BeFalse();
blobSettings.ContainerPublicAccessType.Should().Be(PublicAccessType.BlobContainer);
blobSettings.ContainerPublicAccessType.Should().Be(PublicAccessType.None);
}

[Fact]
Expand Down
2 changes: 1 addition & 1 deletion src/Akka.Persistence.Azure/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ akka.persistence {

# Public access level for the auto-initialized storage container.
# Valid values are "None", "BlobContainer" or "Blob"
container-public-access-type = "BlobContainer"
container-public-access-type = "None"
}
}
}

0 comments on commit 9c79c55

Please sign in to comment.