Skip to content
Snippets Groups Projects
Commit bdee72d4 authored by Kirill Stytsenko's avatar Kirill Stytsenko
Browse files

Add `fda-units-service` to GatewayConfig

Former-commit-id: bbac11b5
parent be4aef63
No related branches found
No related tags found
1 merge request!42Fixed the query service tests
...@@ -16,6 +16,11 @@ public class GatewayConfig { ...@@ -16,6 +16,11 @@ public class GatewayConfig {
.method("POST", "GET", "PUT", "DELETE") .method("POST", "GET", "PUT", "DELETE")
.and() .and()
.uri("lb://fda-analyse-service")) .uri("lb://fda-analyse-service"))
.route("fda-units-service", r -> r.path("/api/units/**")
.and()
.method("POST", "GET", "PUT", "DELETE")
.and()
.uri("lb://fda-units-service"))
.route("fda-container-service", r -> r.path("/api/container/**", .route("fda-container-service", r -> r.path("/api/container/**",
"/api/image/**") "/api/image/**")
.and() .and()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment