Closes gh-14843
This commit is contained in:
Johnny Lim
2018-10-16 07:15:08 +09:00
committed by Stephane Nicoll
parent 39f8b685df
commit 7f9671fd14
7 changed files with 17 additions and 16 deletions

View File

@@ -585,12 +585,12 @@ public class HibernateJpaAutoConfigurationTests
static class AsyncBootstrappingConfiguration {
@Bean
ThreadPoolTaskExecutor ThreadPoolTaskExecutor() {
public ThreadPoolTaskExecutor ThreadPoolTaskExecutor() {
return new ThreadPoolTaskExecutor();
}
@Bean
public EntityManagerFactoryBuilderCustomizer asyncBoostrappingCustomizer(
public EntityManagerFactoryBuilderCustomizer asyncBootstrappingCustomizer(
ThreadPoolTaskExecutor executor) {
return (builder) -> {
builder.setBootstrapExecutor(executor);