BAEL-4758: Override autoIndexCreation in MongoConfig (#10474)

This commit is contained in:
kwoyke
2021-02-10 07:51:44 +01:00
committed by GitHub
parent f8a8972e61
commit 60a8bb5255

View File

@@ -68,4 +68,8 @@ public class MongoConfig extends AbstractMongoClientConfiguration {
return new MongoTransactionManager(dbFactory);
}
@Override
protected boolean autoIndexCreation() {
return true;
}
}