We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See #580 (comment) for project to reproduce.
The problem is that the routeId is null and the event is never published to cache the body.
spring-cloud-gateway/spring-cloud-gateway-core/src/main/java/org/springframework/cloud/gateway/filter/factory/RetryGatewayFilterFactory.java
Lines 166 to 169 in b9df119
The text was updated successfully, but these errors were encountered:
To work around the problem, you need to add routeId to the retry configuration. It must match the routeId.
routeId
spring: cloud: gateway: routes: - id: greeting-service uri: lb://greeting-service predicates: - Path=/greeting-service/** filters: - name: RewritePath args: regexp: /greeting-service/(?<path>.*) replacement: /$\{path} - name: Retry args: routeId: greeting-service methods: GET,POST
Sorry, something went wrong.
dc4ed76
spencergibb
No branches or pull requests
See #580 (comment) for project to reproduce.
The problem is that the routeId is null and the event is never published to cache the body.
spring-cloud-gateway/spring-cloud-gateway-core/src/main/java/org/springframework/cloud/gateway/filter/factory/RetryGatewayFilterFactory.java
Lines 166 to 169 in b9df119
The text was updated successfully, but these errors were encountered: