Skip to content

Commit

Permalink
[KYUUBI apache#6244] Fix test logs upload error
Browse files Browse the repository at this point in the history
  • Loading branch information
wangjunbo committed Apr 30, 2024
1 parent 0e275bd commit b94605f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ class EtcdDiscoveryClientSuite extends DiscoveryClientTests {
if (hasDockerEnv) {
etcdCluster = new Etcd.Builder()
.withNodes(2)
.withMountedDataDirectory(false)
.build()
etcdCluster.start()
conf = new KyuubiConf()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit b94605f

Please sign in to comment.