Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2011-02-20 19:24:10 +0000
committerEike Stepper2011-02-20 19:24:10 +0000
commit86c6fca2effab5a18af9eb07c1c5fc56a3868595 (patch)
treed19baa81ed093e5a3d508c9d4ae37e471e1a553d /plugins/org.eclipse.emf.cdo.tests.mongodb
parent47e47653db35600fa437acf4484672ab3297c5e3 (diff)
downloadcdo-86c6fca2effab5a18af9eb07c1c5fc56a3868595.tar.gz
cdo-86c6fca2effab5a18af9eb07c1c5fc56a3868595.tar.xz
cdo-86c6fca2effab5a18af9eb07c1c5fc56a3868595.zip
[337152] [Mongo] Create a MongoDBStore
https://bugs.eclipse.org/bugs/show_bug.cgi?id=337152
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests.mongodb')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests.mongodb/src/org/eclipse/emf/cdo/tests/mongodb/AllTestsMongoDB.java2
-rw-r--r--plugins/org.eclipse.emf.cdo.tests.mongodb/src/org/eclipse/emf/cdo/tests/mongodb/MongoDBStoreRepositoryConfig.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests.mongodb/src/org/eclipse/emf/cdo/tests/mongodb/AllTestsMongoDB.java b/plugins/org.eclipse.emf.cdo.tests.mongodb/src/org/eclipse/emf/cdo/tests/mongodb/AllTestsMongoDB.java
index 68f7df7786..45c01a2def 100644
--- a/plugins/org.eclipse.emf.cdo.tests.mongodb/src/org/eclipse/emf/cdo/tests/mongodb/AllTestsMongoDB.java
+++ b/plugins/org.eclipse.emf.cdo.tests.mongodb/src/org/eclipse/emf/cdo/tests/mongodb/AllTestsMongoDB.java
@@ -68,7 +68,7 @@ public class AllTestsMongoDB extends AllConfigs
protected boolean hasAuditSupport()
{
- return true;
+ return false;
}
protected boolean hasBranchingSupport()
diff --git a/plugins/org.eclipse.emf.cdo.tests.mongodb/src/org/eclipse/emf/cdo/tests/mongodb/MongoDBStoreRepositoryConfig.java b/plugins/org.eclipse.emf.cdo.tests.mongodb/src/org/eclipse/emf/cdo/tests/mongodb/MongoDBStoreRepositoryConfig.java
index 3fed3fd5b6..24ea5972a2 100644
--- a/plugins/org.eclipse.emf.cdo.tests.mongodb/src/org/eclipse/emf/cdo/tests/mongodb/MongoDBStoreRepositoryConfig.java
+++ b/plugins/org.eclipse.emf.cdo.tests.mongodb/src/org/eclipse/emf/cdo/tests/mongodb/MongoDBStoreRepositoryConfig.java
@@ -103,7 +103,7 @@ public class MongoDBStoreRepositoryConfig extends RepositoryConfig
protected void initRepositoryProperties(Map<String, String> props)
{
super.initRepositoryProperties(props);
- props.put(IRepository.Props.SUPPORTING_AUDITS, "true");
+ props.put(IRepository.Props.SUPPORTING_AUDITS, "false");
props.put(IRepository.Props.SUPPORTING_BRANCHES, "false");
}
}

Back to the top