This is an automated email from the ASF dual-hosted git repository.

yuqi1129 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git


The following commit(s) were added to refs/heads/main by this push:
     new 45d04e2b83 [MINOR] docs(lance): Fix standalone Docker base URI (#13135)
45d04e2b83 is described below

commit 45d04e2b831c50dfc0e755808ac9ae0216019d12
Author: StormSpirit <[email protected]>
AuthorDate: Tue Sep 15 11:55:03 2026 +0800

    [MINOR] docs(lance): Fix standalone Docker base URI (#13135)
    
    ### What changes were proposed in this pull request?
    
    Update the standalone Lance REST Docker documentation to identify
    `http://localhost:9101/lance` as the service base URI instead of
    `http://localhost:9101`.
    
    ### Why are the changes needed?
    
    The standalone Lance REST server mounts its REST resources below the
    `/lance` path. The current Docker section omits this prefix even though
    the examples later in the same document include it, which can lead users
    to configure Spark or other Lance clients with a URL that returns HTTP
    404.
    
    ### Does this PR introduce _any_ user-facing change?
    
    Yes. The documented Docker endpoint is corrected to include the required
    `/lance` path prefix. This change does not modify server behavior, APIs,
    configuration keys, or runtime compatibility.
    
    Fix: N/A (documentation-only correction)
    
    ### How was this patch tested?
    
    Verified with the fixed-version `apache/gravitino-lance-rest:1.3.0`
    Docker image: the root endpoint returned HTTP 404, while the
    `/lance/v1/namespace/list` endpoint returned HTTP 200. The existing
    `/lance` prefixes in the document were also checked for consistency.
    
    Signed-off-by: jiangxt2 <[email protected]>
    Co-authored-by: Qi Yu <[email protected]>
---
 docs/lance-rest-service.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/lance-rest-service.md b/docs/lance-rest-service.md
index 14b9c61a01..ca27ebb7c0 100644
--- a/docs/lance-rest-service.md
+++ b/docs/lance-rest-service.md
@@ -207,7 +207,7 @@ docker run -d --name lance-rest-service -p 9101:9101 \
   apache/gravitino-lance-rest:latest
 ```
 
-Access the service at `http://localhost:9101`.
+Access the service at `http://localhost:9101/lance`.
 
 **Environment Variables:**
 

Reply via email to