This is an automated email from the ASF dual-hosted git repository.
roryqi 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 3dde4dec12 [#9932] fix(build): remove env GRAVITINO_USE_WEB_V2 default
config (#9933)
3dde4dec12 is described below
commit 3dde4dec12cbe1aaec430f6710a96e8d25a90497
Author: Qian Xia <[email protected]>
AuthorDate: Tue Feb 10 15:27:45 2026 +0800
[#9932] fix(build): remove env GRAVITINO_USE_WEB_V2 default config (#9933)
### What changes were proposed in this pull request?
remove env GRAVITINO_USE_WEB_V2 default config
the default value of GRAVITINO_USE_WEB_V2 variable will override the
environment variable setting in the container
### Why are the changes needed?
N/A
Fix: #9932
### Does this PR introduce _any_ user-facing change?
N/A
### How was this patch tested?
manually
---
conf/gravitino-env.sh.template | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/conf/gravitino-env.sh.template b/conf/gravitino-env.sh.template
index 5b8929b3b2..670ae47322 100644
--- a/conf/gravitino-env.sh.template
+++ b/conf/gravitino-env.sh.template
@@ -33,6 +33,6 @@ GRAVITINO_VERSION=GRAVITINO_VERSION_PLACEHOLDER
# # Appended to JAVA_OPTS by launch scripts; set
GRAVITINO_MEM to change heap/metaspace sizes.
# UI selection behaviour:
-# - By default the template sets `GRAVITINO_USE_WEB_V2=false` which forces the
V1 UI.
-# - To enable the v2 UI you can set it to `true` (for example: `export
GRAVITINO_USE_WEB_V2=true`).
-GRAVITINO_USE_WEB_V2=false
\ No newline at end of file
+# - By default this template does not set `GRAVITINO_USE_WEB_V2`, so the
container or environment can control which UI is used.
+# - To force the v1 UI, explicitly set it to `false`; to enable the v2 UI, set
it to `true` (for example: `export GRAVITINO_USE_WEB_V2=true`).
+# GRAVITINO_USE_WEB_V2=false
\ No newline at end of file