This is an automated email from the ASF dual-hosted git repository.
yao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-kyuubi.git
The following commit(s) were added to refs/heads/master by this push:
new b1e949d [KYUUBI #2055] correct the log service name
b1e949d is described below
commit b1e949d4f5ada82c97adda7cf7a95794ad2349dd
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]>
---
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)
}
}
}