Use Mongo 3.5.5 by default with Embedded mongo
Closes gh-14476
This commit is contained in:
parent
1a8f519922
commit
f88ebf75cd
|
@ -38,7 +38,7 @@ public class EmbeddedMongoProperties {
|
|||
/**
|
||||
* Version of Mongo to use.
|
||||
*/
|
||||
private String version = "3.6.5";
|
||||
private String version = "3.5.5";
|
||||
|
||||
private final Storage storage = new Storage();
|
||||
|
||||
|
|
|
@ -60,12 +60,12 @@ public class EmbeddedMongoAutoConfigurationTests {
|
|||
|
||||
@Test
|
||||
public void defaultVersion() {
|
||||
assertVersionConfiguration(null, "3.6.5");
|
||||
assertVersionConfiguration(null, "3.5.5");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void customVersion() {
|
||||
assertVersionConfiguration("3.6.3", "3.6.3");
|
||||
assertVersionConfiguration("3.4.15", "3.4.15");
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
Loading…
Reference in New Issue