Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix path for envoy document_id extraction
  • Loading branch information
bszaf committed Oct 31, 2025
commit 0a3724aade2b829dad922bc3d6eb430a7c7bfa38
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ data:
document_id = string.match(path, "^/documents/([a-zA-Z0-9._~-]+)")
end
if not document_id then
document_id = string.match(path, "^/dashboard/api/document/([a-zA-Z0-9._~-]+)")
document_id = string.match(path, "^/dashboard/api/documents/([a-zA-Z0-9._~-]+)")
end

-- Only set header if document_id found, otherwise use round-robin
Expand Down
Loading