Skip to content

Commit

Permalink
Fix bean name error in autoconfiguration
Browse files Browse the repository at this point in the history
  • Loading branch information
alfespa17 committed May 22, 2021
1 parent acb9c74 commit 9194d5e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class RestClientAutoConfiguration {
private RestClientProperties restClientProperties;

@Bean
public RestClient terraformClient(RestClientProperties restClientProperties) {
public RestClient restClient(RestClientProperties restClientProperties) {
RestClient restClient = Feign.builder()
.encoder(new GsonEncoder())
.decoder(new GsonDecoder())
Expand Down

0 comments on commit 9194d5e

Please sign in to comment.