You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the DependsOnBeanFactoryPostProcessor beans in EmbeddedMongoAutoConfiguration declare dependencies on a bean named "embeddedMongoServer". The @Bean method for embeddedMongoServer is @ConditionalOnMissingBean so it's possible that that a custom type will mean the name changes and the dependsOn check fails.
Se should probably check against MongodExecutable.cass instead.