提交 90e5690d 编写于 作者: S slguan

fix the issue #405

上级 06b7af06
...@@ -89,7 +89,7 @@ void dnodeCheckDbRunning(const char* dir) { ...@@ -89,7 +89,7 @@ void dnodeCheckDbRunning(const char* dir) {
int fd = open(filepath, O_WRONLY | O_CREAT | O_TRUNC, S_IRWXU | S_IRWXG | S_IRWXO); int fd = open(filepath, O_WRONLY | O_CREAT | O_TRUNC, S_IRWXU | S_IRWXG | S_IRWXO);
int ret = flock(fd, LOCK_EX | LOCK_NB); int ret = flock(fd, LOCK_EX | LOCK_NB);
if (ret != 0) { if (ret != 0) {
dError("failed to lock file:%s ret:%d, database may be running, quit", ret, filepath); dError("failed to lock file:%s ret:%d, database may be running, quit", filepath, ret);
exit(0); exit(0);
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册