Skip to content

Commit 1b10253

Browse files
committed
use localhost instead of 127.0.0.1
1 parent c104ce3 commit 1b10253

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- '-Pspark-3.1 -Dhadoop.binary.version=3.2'
4040
- '-Pspark-3.2-snapshot -pl :kyuubi-spark-sql-engine,:kyuubi-common,:kyuubi-ha,:kyuubi-zookeeper -Dmaven.plugin.scalatest.exclude.tags=org.apache.kyuubi.tags.DataLakeTest'
4141
env:
42-
SPARK_LOCAL_IP: 127.0.0.1
42+
SPARK_LOCAL_IP: localhost
4343
steps:
4444
- uses: actions/checkout@v2
4545
- name: Setup JDK 1.8

kyuubi-main/src/test/scala/org/apache/kyuubi/operation/WithKyuubiServer.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,5 +74,5 @@ trait WithKyuubiServer extends KyuubiFunSuite {
7474

7575
// TODO: KYUUBI-504: forbid setting FRONTEND_BIND_HOST by connection string in engine side
7676
protected def getJdbcUrl: String =
77-
s"jdbc:hive2://${server.connectionUrl}/;#${KyuubiConf.FRONTEND_BIND_HOST.key}=127.0.0.1"
77+
s"jdbc:hive2://${server.connectionUrl}/;#${KyuubiConf.FRONTEND_BIND_HOST.key}=localhost"
7878
}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1169,7 +1169,7 @@
11691169
<java.io.tmpdir>${project.build.directory}/tmp</java.io.tmpdir>
11701170
<spark.driver.memory>2g</spark.driver.memory>
11711171
<kyuubi.metrics.json.report.location>${project.build.directory}/metrics</kyuubi.metrics.json.report.location>
1172-
<kyuubi.frontend.bind.host>127.0.0.1</kyuubi.frontend.bind.host>
1172+
<kyuubi.frontend.bind.host>localhost</kyuubi.frontend.bind.host>
11731173
</systemProperties>
11741174
<tagsToExclude>${maven.plugin.scalatest.exclude.tags}</tagsToExclude>
11751175
</configuration>

0 commit comments

Comments
 (0)