boluor opened a new pull request, #3681: URL: https://github.com/apache/doris-website/pull/3681
## Summary In the be-http "View Meta" API doc (`admin-manual/open-api/be-http/meta.md`), the curl example joined the query parameter with `&` directly after the path segment: ``` curl "http://127.0.0.1:8040/api/meta/header/148193&byte_to_base64=true" ``` Per the request spec in the same doc — `GET /api/meta/header/{tablet_id}?byte_to_base64={bool}` — the query string must start with `?`. Corrected `148193&byte_to_base64=true` to `148193?byte_to_base64=true`. Applied across all affected versions: EN (next + 2.1/3.x/4.x) and Chinese (next + 2.1/3.x/4.x). ## Test plan - [x] Verified against the request spec line in the same doc -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
