Skip to content

Commit

Permalink
Fix CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
prakhar10 committed Feb 6, 2025
1 parent ff9f2df commit 638785d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,5 +127,4 @@ public static String removeTrailingSlash(String url)
{
return url.replaceAll("/$", "");
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ protected String findBackendForUnknownQueryId(String queryId)
try {
for (ProxyBackendConfiguration backend : backends) {
String backendProxyToUrl = removeTrailingSlash(backend.getProxyTo());
String target = backendProxyToUrl + "/v1/query/" + queryId;
String target = backendProxyToUrl + "/v1/query/" + queryId;

Future<Integer> call =
executorService.submit(
Expand Down

0 comments on commit 638785d

Please sign in to comment.