From f3dd6430a454f5afd551b614e711e9e18fb00a9f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 11 Oct 2024 16:22:06 +0800 Subject: [PATCH] [#5101] improvement(docs): Fix the document error about access control (#5104) ### What changes were proposed in this pull request? Fix the document error about access control ### Why are the changes needed? Fix: #5101 ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Just docs. Co-authored-by: roryqi --- docs/docker-image-details.md | 4 ++-- docs/security/access-control.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docker-image-details.md b/docs/docker-image-details.md index 600ef9468ad..c0d960d034f 100644 --- a/docs/docker-image-details.md +++ b/docs/docker-image-details.md @@ -14,7 +14,7 @@ You can deploy the service with the Gravitino Docker image. Container startup commands ```shell -docker run --rm -d -p 8090:8090 -p 9001:9001 apache/gravitino:0.6.0-incubating +docker run --rm -d -p 8090:8090 -p 9001:9001 apache/gravitino:0.6.1-incubating ``` Changelog @@ -51,7 +51,7 @@ You can deploy the standalone Gravitino Iceberg REST server with the Docker imag Container startup commands ```shell -docker run --rm -d -p 9001:9001 apache/gravitino-iceberg-rest:0.6.0-incubating +docker run --rm -d -p 9001:9001 apache/gravitino-iceberg-rest:0.6.1-incubating ``` Changelog diff --git a/docs/security/access-control.md b/docs/security/access-control.md index 9d98c0a3701..fb8bde8cb00 100644 --- a/docs/security/access-control.md +++ b/docs/security/access-control.md @@ -662,7 +662,7 @@ MetadataObject table = ... Role role = client.grantPrivilegesToRole("role1", table, Lists.newArrayList(Privileges.SelectTable.allow())); ``` - + ### Revoke privileges from a role