Skip to content

Commit

Permalink
Add signed-url to jwt filter
Browse files Browse the repository at this point in the history
  • Loading branch information
ramari16 committed Nov 7, 2024
1 parent ed45d79 commit 223034b
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,10 @@ private HashMap<String, Object> prepareRequestMap(ContainerRequestContext reques

Query initialQuery = null;
// Read the query from the backing store if we are getting the results (full query may not be specified in request)
if (requestPath.startsWith("/query/") && (requestPath.endsWith("result") || requestPath.endsWith("result/"))) {
if (requestPath.startsWith("/query/") &&
(requestPath.endsWith("result") || requestPath.endsWith("result/") ||
requestPath.endsWith("signed-redirect") || requestPath.endsWith("signed-redirect/"))
) {
// Path: /query/{queryId}/result
String[] pathParts = requestPath.split("/");
UUID uuid = UUID.fromString(pathParts[2]);
Expand Down

0 comments on commit 223034b

Please sign in to comment.