rename files

This commit is contained in:
Shengliang Guan 2022-03-12 23:00:55 +08:00
parent ea47b4da24
commit f9685371a9
7 changed files with 4 additions and 4 deletions

View File

@ -1,2 +1,2 @@
add_subdirectory(daemon) add_subdirectory(exec)
add_subdirectory(impl) add_subdirectory(impl)

View File

@ -1,5 +1,5 @@
aux_source_directory(src DAEMON_SRC) aux_source_directory(src EXEC_SRC)
add_executable(taosd ${DAEMON_SRC}) add_executable(taosd ${EXEC_SRC})
target_include_directories( target_include_directories(
taosd taosd

View File

@ -117,7 +117,7 @@ void mmRelease(SDnode *pDnode, SMnode *pMnode) {
int32_t mmOpen(SDnode *pDnode, SMnodeOpt *pOption) { int32_t mmOpen(SDnode *pDnode, SMnodeOpt *pOption) {
SMndMgmt *pMgmt = &pDnode->mmgmt; SMndMgmt *pMgmt = &pDnode->mmgmt;
pMgmt->singleProc = false; pMgmt->singleProc = true;
int32_t code = mmOpenImp(pDnode, pOption); int32_t code = mmOpenImp(pDnode, pOption);