This is an automated email from the ASF dual-hosted git repository.
chengpan pushed a commit to branch branch-1.9
in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/branch-1.9 by this push:
new 7523a4ec8 [KYUUBI #6244][TEST] Fix test logs upload error
7523a4ec8 is described below
commit 7523a4ec86a8b54589e1f3c3c3648f50f007cf7d
Author: wangjunbo <[email protected]>
AuthorDate: Tue Apr 30 14:59:42 2024 +0800
[KYUUBI #6244][TEST] Fix test logs upload error
# :mag: Description
## Issue References ๐
This pull request fixes #6244
## Describe Your Solution ๐ง
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that are
required for this change.
## Types of changes :bookmark:
- [x] Bugfix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing
functionality to change)
## Test Plan ๐งช
#### Behavior Without This Pull Request :coffin:
#### Behavior With This Pull Request :tada:
#### Related Unit Tests
---
# Checklist ๐
- [ ] This patch was not authored or co-authored using [Generative
Tooling](https://www.apache.org/legal/generative-tooling.html)
**Be nice. Be informative.**
Closes #6351 from beryllw/kyuubi-6244.
Closes #6244
603431087 [wangjunbo] [KYUUBI #6244] Fix test logs upload error
460b25985 [wangjunbo] [KYUUBI #6244] Fix test logs upload error
Authored-by: wangjunbo <[email protected]>
Signed-off-by: Cheng Pan <[email protected]>
(cherry picked from commit c73ae71d5f44cf9b512e43b5f459075b762c2f95)
Signed-off-by: Cheng Pan <[email protected]>
---
.../src/test/scala/org/apache/kyuubi/engine/spark/WithEtcdCluster.scala | 1 +
.../org/apache/kyuubi/ha/client/etcd/EtcdDiscoveryClientSuite.scala | 1 +
.../src/test/scala/org/apache/kyuubi/engine/EngineRefWithEtcdSuite.scala | 1 +
3 files changed, 3 insertions(+)
diff --git
a/externals/kyuubi-spark-sql-engine/src/test/scala/org/apache/kyuubi/engine/spark/WithEtcdCluster.scala
b/externals/kyuubi-spark-sql-engine/src/test/scala/org/apache/kyuubi/engine/spark/WithEtcdCluster.scala
index ee0d01dab..3b94ceba1 100644
---
a/externals/kyuubi-spark-sql-engine/src/test/scala/org/apache/kyuubi/engine/spark/WithEtcdCluster.scala
+++
b/externals/kyuubi-spark-sql-engine/src/test/scala/org/apache/kyuubi/engine/spark/WithEtcdCluster.scala
@@ -40,6 +40,7 @@ trait WithEtcdCluster extends KyuubiFunSuite {
override def beforeAll(): Unit = {
etcdCluster = new Etcd.Builder()
.withNodes(1)
+ .withMountedDataDirectory(false)
.build()
etcdCluster.start()
super.beforeAll()
diff --git
a/kyuubi-ha/src/test/scala/org/apache/kyuubi/ha/client/etcd/EtcdDiscoveryClientSuite.scala
b/kyuubi-ha/src/test/scala/org/apache/kyuubi/ha/client/etcd/EtcdDiscoveryClientSuite.scala
index de48a3495..2f1641486 100644
---
a/kyuubi-ha/src/test/scala/org/apache/kyuubi/ha/client/etcd/EtcdDiscoveryClientSuite.scala
+++
b/kyuubi-ha/src/test/scala/org/apache/kyuubi/ha/client/etcd/EtcdDiscoveryClientSuite.scala
@@ -50,6 +50,7 @@ class EtcdDiscoveryClientSuite extends DiscoveryClientTests {
if (hasDockerEnv) {
etcdCluster = new Etcd.Builder()
.withNodes(2)
+ .withMountedDataDirectory(false)
.build()
etcdCluster.start()
conf = new KyuubiConf()
diff --git
a/kyuubi-server/src/test/scala/org/apache/kyuubi/engine/EngineRefWithEtcdSuite.scala
b/kyuubi-server/src/test/scala/org/apache/kyuubi/engine/EngineRefWithEtcdSuite.scala
index fadb2741a..278eec063 100644
---
a/kyuubi-server/src/test/scala/org/apache/kyuubi/engine/EngineRefWithEtcdSuite.scala
+++
b/kyuubi-server/src/test/scala/org/apache/kyuubi/engine/EngineRefWithEtcdSuite.scala
@@ -42,6 +42,7 @@ class EngineRefWithEtcdSuite extends EngineRefTests {
override def beforeAll(): Unit = {
etcdCluster = new Etcd.Builder()
.withNodes(1)
+ .withMountedDataDirectory(false)
.build()
etcdCluster.start()
super.beforeAll()