Merge remote-tracking branch 'source/branch-0.5.0' into branch-0.5.0

Former-commit-id: 036da4f101080d5c1f692c485d23ab6d12daa0f5
This commit is contained in:
starlord 2019-09-19 18:04:30 +08:00
commit 88304138b0
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ Please mark all change in change log and use the ticket from JIRA.
## Bug
- MS-568 - Fix gpuresource free error
- MS-572 - Milvus crash when get SIGINT
- MS-577 - Unittest Query randomly hung
## Improvement
- MS-552 - Add and change the easylogging library

View File

@ -32,8 +32,8 @@ JobMgr::JobMgr(ResourceMgrPtr res_mgr)
void
JobMgr::Start() {
if (not running_) {
worker_thread_ = std::thread(&JobMgr::worker_function, this);
running_ = true;
worker_thread_ = std::thread(&JobMgr::worker_function, this);
}
}