This is an automated email from the ASF dual-hosted git repository.
yao pushed a commit to branch branch-1.5
in repository https://gitbox.apache.org/repos/asf/incubator-kyuubi.git
The following commit(s) were added to refs/heads/branch-1.5 by this push:
new 1c285e9 [KYUUBI #2055] correct the log service name
1c285e9 is described below
commit 1c285e93cfdcca71fc0c23a03cff63f2b41eb2a5
Author: jiaoqingbo <[email protected]>
AuthorDate: Mon Mar 7 17:45:19 2022 +0800
[KYUUBI #2055] correct the log service name
### _Why are the changes needed?_
fix #2055
### _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
- [x] [Run
test](https://kyuubi.apache.org/docs/latest/develop_tools/testing.html#running-tests)
locally before make a pull request
Closes #2056 from jiaoqingbo/2055.
Closes #2055
52a2e623 [jiaoqingbo] [KYUUBI #2055] correct the log service name
Authored-by: jiaoqingbo <[email protected]>
Signed-off-by: Kent Yao <[email protected]>
(cherry picked from commit b1e949d4f5ada82c97adda7cf7a95794ad2349dd)
Signed-off-by: Kent Yao <[email protected]>
---
kyuubi-common/src/main/scala/org/apache/kyuubi/service/Serverable.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/kyuubi-common/src/main/scala/org/apache/kyuubi/service/Serverable.scala
b/kyuubi-common/src/main/scala/org/apache/kyuubi/service/Serverable.scala
index 4ef9014..05ed364 100644
--- a/kyuubi-common/src/main/scala/org/apache/kyuubi/service/Serverable.scala
+++ b/kyuubi-common/src/main/scala/org/apache/kyuubi/service/Serverable.scala
@@ -67,7 +67,7 @@ abstract class Serverable(name: String) extends
CompositeService(name) {
stopServer()
} catch {
case t: Throwable =>
- warn(s"Error stopping spark ${t.getMessage}", t)
+ warn(s"Error stopping $name ${t.getMessage}", t)
}
}
}