Skip to content
This repository was archived by the owner on Mar 20, 2025. It is now read-only.

Commit 0fc3b13

Browse files
authored
Merge pull request #67 from divverence/fix-issue-66
Fix issue #66, by using the correct default
2 parents 29652a2 + d01c717 commit 0fc3b13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Akka.Persistence.PostgreSql/Snapshot/PostgreSqlSnapshotStore.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class PostgreSqlSnapshotStore : SqlSnapshotStore
2222
public PostgreSqlSnapshotStoreSettings SnapshotSettings { get; }
2323
public PostgreSqlSnapshotStore(Config snapshotConfig) : base(snapshotConfig)
2424
{
25-
var config = snapshotConfig.WithFallback(Extension.DefaultJournalConfig);
25+
var config = snapshotConfig.WithFallback(Extension.DefaultSnapshotConfig);
2626
StoredAsType storedAs;
2727
var storedAsString = config.GetString("stored-as");
2828
if (!Enum.TryParse(storedAsString, true, out storedAs))

0 commit comments

Comments
 (0)