Skip to content

Commit

Permalink
Merge pull request #30 from senacor/bugfix/29/fixed_autoconfigure_aft…
Browse files Browse the repository at this point in the history
…er_for_spring-boot_2.3+

fixes issue #29: AutoConfigureAfter ElasticsearchRestClientAutoConfiguration (moved in spring-boot 2.3)
  • Loading branch information
xtermi2 authored Mar 11, 2021
2 parents 65f86d0 + 8a98d02 commit a7e4495
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ ElasticsearchEvolution.configure()

- fixed issue [#27](https://github.com/senacor/elasticsearch-evolution/issues/27)
- version updates (spring-boot 2.4.3)
- fixed issue [#29](https://github.com/senacor/elasticsearch-evolution/issues/29)

### v0.3.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
"org.springframework.boot.autoconfigure.kafka.KafkaAutoConfiguration" // since spring-boot 1.5
})
@AutoConfigureAfter(name = {
"org.springframework.boot.autoconfigure.elasticsearch.rest.RestClientAutoConfiguration" // since spring-boot 2.1
"org.springframework.boot.autoconfigure.elasticsearch.rest.RestClientAutoConfiguration", // spring-boot 2.1 / 2.2
"org.springframework.boot.autoconfigure.elasticsearch.ElasticsearchRestClientAutoConfiguration" // spring-boot 2.3+
})
public class ElasticsearchEvolutionAutoConfiguration {

Expand Down

0 comments on commit a7e4495

Please sign in to comment.