This commit is contained in:
Stephane Nicoll 2015-07-16 17:45:00 +02:00
parent a0f10a567c
commit 538c8d04b1
1 changed files with 2 additions and 2 deletions

View File

@ -34,12 +34,12 @@ import de.flapdoodle.embed.mongo.distribution.Feature;
public class EmbeddedMongoProperties { public class EmbeddedMongoProperties {
/** /**
* Version of Mongo to use * Version of Mongo to use.
*/ */
private String version = "2.6.10"; private String version = "2.6.10";
/** /**
* Comma-separated list of features to enable * Comma-separated list of features to enable.
*/ */
private Set<Feature> features = new HashSet<Feature>( private Set<Feature> features = new HashSet<Feature>(
Arrays.asList(Feature.SYNC_DELAY)); Arrays.asList(Feature.SYNC_DELAY));