[KYUUBI #2272] Fix incorrect doc link

### _Why are the changes needed?_

close #2272

### _How was this patch tested?_
- [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible

- [ ] Add screenshots for manual tests if appropriate

- [ ] [Run test](https://kyuubi.apache.org/docs/latest/develop_tools/testing.html#running-tests) locally before make a pull request

Closes #2273 from wForget/KYUUBI-2272.

Closes #2272

a3f16a10 [wforget] [KYUUBI-2272] Fix incorrect doc link

Authored-by: wforget <643348094@qq.com>
Signed-off-by: ulysses-you <ulyssesyou@apache.org>
This commit is contained in:
wforget 2022-04-02 17:51:16 +08:00 committed by ulysses-you
parent 2af5067aca
commit f0d6ca0f27
No known key found for this signature in database
GPG Key ID: 4C500BC62D576766
4 changed files with 5 additions and 5 deletions

View File

@ -60,7 +60,7 @@ class FlinkProcessBuilder(
} getOrElse {
throw KyuubiSQLException("FLINK_ENGINE_HOME is not set! " +
"For more detail information on installing and configuring Flink, please visit " +
"https://kyuubi.apache.org/docs/stable/deployment/settings.html#environments")
"https://kyuubi.apache.org/docs/latest/deployment/settings.html#environments")
}
}
@ -155,7 +155,7 @@ class FlinkProcessBuilder(
} getOrElse {
throw KyuubiSQLException("FLINK_HOME is not set! " +
"For more detail information on installing and configuring Flink, please visit " +
"https://kyuubi.apache.org/docs/stable/deployment/settings.html#environments")
"https://kyuubi.apache.org/docs/latest/deployment/settings.html#environments")
}
}

View File

@ -51,7 +51,7 @@ class HiveProcessBuilder(
}.getOrElse {
throw KyuubiSQLException("HIVE_ENGINE_HOME is not set! " +
"For more detail information on installing and configuring Hive, please visit " +
"https://kyuubi.apache.org/docs/stable/deployment/settings.html#environments")
"https://kyuubi.apache.org/docs/latest/deployment/settings.html#environments")
}
}

View File

@ -74,7 +74,7 @@ class SparkProcessBuilder(
}.getOrElse {
throw KyuubiSQLException("SPARK_HOME is not set! " +
"For more detail information on installing and configuring Spark, please visit " +
"https://kyuubi.apache.org/docs/stable/deployment/settings.html#environments")
"https://kyuubi.apache.org/docs/latest/deployment/settings.html#environments")
}
}

View File

@ -72,7 +72,7 @@ class TrinoProcessBuilder(
}.getOrElse {
throw KyuubiSQLException("TRINO_ENGINE_HOME is not set! " +
"For more detail information on installing and configuring Trino, please visit " +
"https://kyuubi.apache.org/docs/stable/deployment/settings.html#environments")
"https://kyuubi.apache.org/docs/latest/deployment/settings.html#environments")
}
}