This is an automated email from the ASF dual-hosted git repository.
yuqi1129 pushed a commit to branch issue_11221_gravitino_home_pid
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/issue_11221_gravitino_home_pid
by this push:
new b4fa89aac6 fix IT error.
new 21835d701a Merge remote-tracking branch
'origin/issue_11221_gravitino_home_pid' into issue_11221_gravitino_home_pid
b4fa89aac6 is described below
commit b4fa89aac67478e96ba6ecb385eb8dd3f0673292
Author: yuqi <[email protected]>
AuthorDate: Tue May 26 20:21:58 2026 +0800
fix IT error.
---
.../integration/test/util/IcebergRESTServerManagerForDeploy.java | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git
a/iceberg/iceberg-rest-server/src/test/java/org/apache/gravitino/iceberg/integration/test/util/IcebergRESTServerManagerForDeploy.java
b/iceberg/iceberg-rest-server/src/test/java/org/apache/gravitino/iceberg/integration/test/util/IcebergRESTServerManagerForDeploy.java
index 943acde5c7..c283a19d2a 100644
---
a/iceberg/iceberg-rest-server/src/test/java/org/apache/gravitino/iceberg/integration/test/util/IcebergRESTServerManagerForDeploy.java
+++
b/iceberg/iceberg-rest-server/src/test/java/org/apache/gravitino/iceberg/integration/test/util/IcebergRESTServerManagerForDeploy.java
@@ -94,6 +94,10 @@ public class IcebergRESTServerManagerForDeploy extends
IcebergRESTServerManager
@Override
public void doStopIcebergRESTServer() {
String cmd = String.format("%s/bin/%s stop",
icebergRESTServerHome.toString(), SCRIPT_NAME);
- CommandExecutor.executeCommandLocalHost(cmd, false, TypesOfData.ERROR);
+ CommandExecutor.executeCommandLocalHost(
+ cmd,
+ false,
+ TypesOfData.ERROR,
+ ImmutableMap.of("GRAVITINO_HOME", icebergRESTServerHome.toString()));
}
}