Skip to content

Commit

Permalink
Merge pull request #67 from divverence/fix-issue-66
Browse files Browse the repository at this point in the history
Fix issue #66, by using the correct default
  • Loading branch information
Arkatufus authored Mar 5, 2021
2 parents 29652a2 + d01c717 commit 0fc3b13
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class PostgreSqlSnapshotStore : SqlSnapshotStore
public PostgreSqlSnapshotStoreSettings SnapshotSettings { get; }
public PostgreSqlSnapshotStore(Config snapshotConfig) : base(snapshotConfig)
{
var config = snapshotConfig.WithFallback(Extension.DefaultJournalConfig);
var config = snapshotConfig.WithFallback(Extension.DefaultSnapshotConfig);
StoredAsType storedAs;
var storedAsString = config.GetString("stored-as");
if (!Enum.TryParse(storedAsString, true, out storedAs))
Expand Down

0 comments on commit 0fc3b13

Please sign in to comment.