-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Discover] Encode context anchor ID #160239
Conversation
💚 Build Succeeded
Metrics [docs]Page load bundle
Unknown metric groupsESLint disabled line counts
Total ESLint disabled count
To update your PR or re-run it, just comment with: cc @jughosta |
Pinging @elastic/kibana-data-discovery (Team:DataDiscovery) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested locally and working as expected 👍 Thanks for fixing!
- Closes elastic#160212 ## Summary Added the missing encoding and updated tests. ## For testing An id with special characters like `/` can be specified via `_bulk` API. Example: ``` POST _bulk { "index" : { "_index" : "context-special", "_id" : "test&?#+/=" } } { "timestamp":"2023-06-20T20:00:00.123Z", "name": "test" } ``` (cherry picked from commit 78ee25d)
💚 All backports created successfully
Note: Successful backport PRs will be merged automatically after passing CI. Questions ?Please refer to the Backport tool documentation |
Looks like this PR has a backport PR but it still hasn't been merged. Please merge it ASAP to keep the branches relatively in sync. |
Looks like this PR has a backport PR but it still hasn't been merged. Please merge it ASAP to keep the branches relatively in sync. |
Friendly reminder: Looks like this PR hasn’t been backported yet. |
Summary
Added the missing encoding and updated tests.
For testing
An id with special characters like
/
can be specified via_bulk
API.Example: