提交 b749e7ec 编写于 作者: J jinhai

MS-82 Update


Former-commit-id: c8dd35401e0fd15df7f140978e37c7a0e6a363f7
上级 b6e51b26
...@@ -193,11 +193,13 @@ Server::Stop() { ...@@ -193,11 +193,13 @@ Server::Stop() {
if (pid_fd != -1) { if (pid_fd != -1) {
int ret = lockf(pid_fd, F_ULOCK, 0); int ret = lockf(pid_fd, F_ULOCK, 0);
if(ret != 0){ if(ret != 0){
printf("Can't lock file: %s\n", strerror(errno));
exit(0);
} }
ret = close(pid_fd); ret = close(pid_fd);
if(ret != 0){ if(ret != 0){
printf("Can't close file: %s\n", strerror(errno));
exit(0);
} }
} }
...@@ -205,7 +207,8 @@ Server::Stop() { ...@@ -205,7 +207,8 @@ Server::Stop() {
if (!pid_filename_.empty()) { if (!pid_filename_.empty()) {
int ret = unlink(pid_filename_.c_str()); int ret = unlink(pid_filename_.c_str());
if(ret != 0){ if(ret != 0){
printf("Can't unlink file: %s\n", strerror(errno));
exit(0);
} }
} }
...@@ -216,6 +219,7 @@ Server::Stop() { ...@@ -216,6 +219,7 @@ Server::Stop() {
#ifdef ENABLE_LICENSE #ifdef ENABLE_LICENSE
server::LicenseCheck::GetInstance().StopCountingDown(); server::LicenseCheck::GetInstance().StopCountingDown();
#endif #endif
printf("Milvus server is closed!\n");
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册