Skip to content

Commit

Permalink
fix ut
Browse files Browse the repository at this point in the history
  • Loading branch information
turboFei committed Oct 21, 2021
1 parent 10f788a commit 8cc2ea6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

package org.apache.kyuubi

import org.apache.kyuubi.config.KyuubiConf

import scala.collection.mutable.ArrayBuffer

// scalastyle:off
Expand All @@ -45,7 +43,6 @@ trait KyuubiFunSuite extends AnyFunSuite
// scalastyle:on
override def beforeAll(): Unit = {
System.setProperty(IS_TESTING.key, "true")
System.setProperty(KyuubiConf.AUTHENTICATION_SASL_PLAIN_AUTH_TYPE.key, "NONE")
doThreadPreAudit()
super.beforeAll()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ trait WithKyuubiServer extends KyuubiFunSuite {
conf.setIfMissing(ENGINE_IDLE_TIMEOUT, 10000L)
conf.set(HA_ZK_QUORUM, zkServer.getConnectString)
conf.set(HA_ZK_ACL_ENABLED, false)
conf.set(KyuubiConf.AUTHENTICATION_SASL_PLAIN_AUTH_TYPE, "NONE")

// TODO KYUUBI #745
conf.setIfMissing(ENGINE_INIT_TIMEOUT, 300000L)
Expand Down

0 comments on commit 8cc2ea6

Please sign in to comment.