Skip to content

Commit 7621783

Browse files
authored
Merge pull request #4068 from NeatGuyCoding/fix-doc-retry
Use correct config prefix in retry filter documentation
2 parents 2099110 + 2367dd0 commit 7621783

1 file changed

Lines changed: 15 additions & 14 deletions

File tree

  • docs/modules/ROOT/pages/spring-cloud-gateway-server-webmvc/filters

docs/modules/ROOT/pages/spring-cloud-gateway-server-webmvc/filters/retry.adoc

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -106,20 +106,21 @@ The following two example routes are equivalent:
106106
spring:
107107
cloud:
108108
gateway:
109-
mvc:
110-
routes:
111-
- id: retry_route
112-
uri: https://example.org
113-
filters:
114-
- name: Retry
115-
args:
116-
retries: 3
117-
statuses: INTERNAL_SERVER_ERROR
118-
methods: GET
119-
- id: retryshortcut_route
120-
uri: https://example.org
121-
filters:
122-
- Retry=3,INTERNAL_SERVER_ERROR,GET
109+
server:
110+
webmvc:
111+
routes:
112+
- id: retry_route
113+
uri: https://example.org
114+
filters:
115+
- name: Retry
116+
args:
117+
retries: 3
118+
statuses: INTERNAL_SERVER_ERROR
119+
methods: GET
120+
- id: retryshortcut_route
121+
uri: https://example.org
122+
filters:
123+
- Retry=3,INTERNAL_SERVER_ERROR,GET
123124
----
124125

125126
== Forcing Framework Retry Filter

0 commit comments

Comments
 (0)