This is an automated email from the ASF dual-hosted git repository. jshao 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 3a9514de6a [#8897]: fix(docs): update user deletion method and correct
OSS key name in documentation (#9369)
3a9514de6a is described below
commit 3a9514de6a00fd117adc967664290186e416e0f3
Author: Mini Yu <[email protected]>
AuthorDate: Fri Dec 5 11:36:26 2025 +0800
[#8897]: fix(docs): update user deletion method and correct OSS key name in
documentation (#9369)
### What changes were proposed in this pull request?
update user deletion method and correct OSS key name in documentation
### Why are the changes needed?
They are mistakes.
Fixed: #8897
### Does this PR introduce _any_ user-facing change?
N/A
### How was this patch tested?
N/A.
---
docs/lakehouse-paimon-catalog.md | 2 +-
docs/security/access-control.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/lakehouse-paimon-catalog.md b/docs/lakehouse-paimon-catalog.md
index 1289708fae..8bb9b0ca2b 100644
--- a/docs/lakehouse-paimon-catalog.md
+++ b/docs/lakehouse-paimon-catalog.md
@@ -43,7 +43,7 @@ Builds with Apache Paimon `1.2`.
| `authentication.kerberos.keytab-fetch-timeout-sec` | The fetch timeout of
retrieving Kerberos keytab from `authentication.kerberos.keytab-uri`.
| 60
| No
[...]
| `oss-endpoint` | The endpoint of the
Aliyun OSS.
| (none)
| required if the value of `warehouse` is a OSS path
[...]
| `oss-access-key-id` | The access key of the
Aliyun OSS.
| (none)
| required if the value of `warehouse` is a OSS path
[...]
-| `oss-access-key-secret` | The secret key the
Aliyun OSS.
| (none)
| required if the value of `warehouse` is a OSS path
[...]
+| `oss-secret-access-key` | The secret key the
Aliyun OSS.
| (none)
| required if the value of `warehouse` is a OSS path
[...]
| `s3-endpoint` | The endpoint of the AWS
S3.
| (none)
| required if the value of `warehouse` is a S3 path
[...]
| `s3-access-key-id` | The access key of the
AWS S3.
| (none)
| required if the value of `warehouse` is a S3 path
[...]
| `s3-secret-access-key` | The secret key of the
AWS S3.
| (none)
| required if the value of `warehouse` is a S3 path
[...]
diff --git a/docs/security/access-control.md b/docs/security/access-control.md
index 9cdd400a1d..05760173e0 100644
--- a/docs/security/access-control.md
+++ b/docs/security/access-control.md
@@ -435,7 +435,7 @@ curl -X DELETE -H "Accept:
application/vnd.gravitino.v1+json" \
```java
GravitinoClient client = ...
boolean deleted =
- client.deleteUser("user1");
+ client.removeUser("user1");
```
</TabItem>
