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 1b58dba5ac
commit 153f600c62
1 changed files with 4 additions and 0 deletions

View File

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