diff --git a/src/FeatureAdmin/Repository/FeatureRepository.cs b/src/FeatureAdmin/Repository/FeatureRepository.cs index 30334b1..0d477d0 100644 --- a/src/FeatureAdmin/Repository/FeatureRepository.cs +++ b/src/FeatureAdmin/Repository/FeatureRepository.cs @@ -25,8 +25,8 @@ public FeatureRepository(IEventAggregator eventAggregator var config = new EngineConfiguration(); config.PersistenceMode = PersistenceMode.ManualSnapshots; // see https://github.com/DevrexLabs/OrigoDB/issues/24 - // config.SetCommandStoreFactory(cfg => new OrigoDB.Core.Test.InMemoryCommandStore(cfg)); - // config.SetSnapshotStoreFactory(cfg => new OrigoDB.Core.Test.InMemorySnapshotStore(cfg)); + config.SetCommandStoreFactory(cfg => new OrigoDB.Core.Test.InMemoryCommandStore(cfg)); + config.SetSnapshotStoreFactory(cfg => new OrigoDB.Core.Test.InMemorySnapshotStore(cfg)); store = Db.For(config); this.eventAggregator = eventAggregator;