Commit c39cfe490a3b2f26be55979341401a563944aca2
1 parent
05a7f3b2
fixed getDefaultEdgeRuleChains method
Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -2278,7 +2278,7 @@ public class RestClient implements ClientHttpRequestInterceptor, Closeable { |
2278 | 2278 | } |
2279 | 2279 | |
2280 | 2280 | public List<RuleChain> getDefaultEdgeRuleChains() { |
2281 | - return restTemplate.exchange(baseURL + "/ruleChain/defaultEdgeRuleChains", | |
2281 | + return restTemplate.exchange(baseURL + "/api/ruleChain/defaultEdgeRuleChains", | |
2282 | 2282 | HttpMethod.GET, |
2283 | 2283 | HttpEntity.EMPTY, |
2284 | 2284 | new ParameterizedTypeReference<List<RuleChain>>() { | ... | ... |