Skip to content

Commit c075e3b

Browse files
Route '/concept' to cm-generic-concept-transformer service
1 parent 447c45f commit c075e3b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

default.vcl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ sub vcl_recv {
5151
set req.url = regsub(req.url, "locations-smartlogic", "notify");
5252
set req.backend_hint = dynBackend.backend("locations-smartlogic-notifier");
5353
}
54+
elif (req.url ~ "^\/concept/.*$") {
55+
set req.backend_hint = dynBackend.backend("cm-generic-concept-transformer");
56+
}
5457
elif (req.url ~ "^\/__[\w-]*\/.*$") {
5558
# create a new backend dynamically to match the requested URL that will be looked up in the Kubernetes DNS.
5659
# For example calling the URL /__content-ingester/xyz will forward the request to the service content-ingester with the url /xyz

0 commit comments

Comments
 (0)