From 9f9ce39789b17a95d59a3809620f33665e4f03ca Mon Sep 17 00:00:00 2001 From: Leandro Quiroga <30802640+leaqui@users.noreply.github.com> Date: Mon, 19 Apr 2021 15:45:44 -0300 Subject: [PATCH 1/2] Fix typo. --- docs/src/main/asciidoc/spring-cloud-openfeign.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/main/asciidoc/spring-cloud-openfeign.adoc b/docs/src/main/asciidoc/spring-cloud-openfeign.adoc index a8214d27..50483ae7 100644 --- a/docs/src/main/asciidoc/spring-cloud-openfeign.adoc +++ b/docs/src/main/asciidoc/spring-cloud-openfeign.adoc @@ -393,7 +393,7 @@ favor for an opt-in approach. [[spring-cloud-feign-hystrix-fallback]] === Feign Hystrix Fallbacks -Hystrix supports the notion of a fallback: a default code path that is executed when they circuit is open or there is an error. To enable fallbacks for a given `@FeignClient` set the `fallback` attribute to the class name that implements the fallback. You also need to declare your implementation as a Spring bean. +Hystrix supports the notion of a fallback: a default code path that is executed when the circuit is open or there is an error. To enable fallbacks for a given `@FeignClient` set the `fallback` attribute to the class name that implements the fallback. You also need to declare your implementation as a Spring bean. [source,java,indent=0] ---- @@ -461,7 +461,7 @@ The circuit breaker name follows this pattern `#` [[spring-cloud-feign-circuitbreaker-fallback]] === Feign Spring Cloud CircuitBreaker Fallbacks -Spring Cloud CircuitBreaker supports the notion of a fallback: a default code path that is executed when they circuit is open or there is an error. To enable fallbacks for a given `@FeignClient` set the `fallback` attribute to the class name that implements the fallback. You also need to declare your implementation as a Spring bean. +Spring Cloud CircuitBreaker supports the notion of a fallback: a default code path that is executed when the circuit is open or there is an error. To enable fallbacks for a given `@FeignClient` set the `fallback` attribute to the class name that implements the fallback. You also need to declare your implementation as a Spring bean. [source,java,indent=0] ---- From 0bf0426f609cf07bcbde07fd93b5b07abc6ae2a8 Mon Sep 17 00:00:00 2001 From: Olga MaciaszekSharma Date: Tue, 20 Apr 2021 16:14:20 +0200 Subject: [PATCH 2/2] Update GH actions setup. --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index bd51b3e1..474a3c94 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - java: ["8", "15", "16"] + java: ["8", "11", "16"] steps: - uses: actions/checkout@v2