Skip to content

Commit

Permalink
Removed transaction filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
TheNavigateur committed Nov 8, 2011
1 parent 79854f2 commit e6efcab
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Expand Up @@ -14,7 +14,6 @@ public PrevaylerQuerySubject() throws Exception {
PrevaylerFactory<QuerySystem> factory = new PrevaylerFactory<QuerySystem>();
factory.configurePrevalentSystem(new QuerySystem());
factory.configurePrevalenceDirectory(PREVALENCE_BASE);
factory.configureTransactionFiltering(false);
prevayler = factory.create();
}

Expand Down
Expand Up @@ -43,7 +43,6 @@ private void initializePrevayler() throws Exception {
factory.configurePrevalentSystem(new TransactionSystem());
factory.configurePrevalenceDirectory(_journalDirectory);
factory.configureJournalSerializer("journal", (Serializer) Class.forName(_journalSerializer).newInstance());
factory.configureTransactionFiltering(false);
prevayler = factory.create(); //No snapshot is generated by the test.
}

Expand Down
Expand Up @@ -305,7 +305,6 @@ private void crashRecover(boolean journalDiskSync) throws Exception {
PrevaylerFactory<AppendingSystem> factory = new PrevaylerFactory<AppendingSystem>();
factory.configurePrevalentSystem(new AppendingSystem());
factory.configurePrevalenceDirectory(prevalenceBase());
factory.configureTransactionFiltering(false);
factory.configureJournalDiskSync(journalDiskSync);
_prevayler = factory.create();
}
Expand Down

0 comments on commit e6efcab

Please sign in to comment.