Merge pull request #21769 from tszmytka

* pr/21769:
  Back-off if a custom ReactiveSessionFactory is defined

Closes gh-21769
This commit is contained in:
Stephane Nicoll 2020-06-10 18:13:08 +02:00
commit 6c926f7849
1 changed files with 1 additions and 0 deletions

View File

@ -55,6 +55,7 @@ public class CassandraReactiveDataAutoConfiguration {
}
@Bean
@ConditionalOnMissingBean
public ReactiveSessionFactory reactiveCassandraSessionFactory(ReactiveSession reactiveCassandraSession) {
return new DefaultReactiveSessionFactory(reactiveCassandraSession);
}