fix(stream): fix syntax error.

This commit is contained in:
Haojun Liao 2023-08-30 16:02:46 +08:00
parent c5b279f045
commit d26e5373b9
1 changed files with 1 additions and 1 deletions

View File

@ -848,7 +848,7 @@ int32_t chkpPreCheckDir(char* path, int64_t chkpId, char** chkpDir, char** chkpI
char* pChkpIdDir = taosMemoryCalloc(1, 256);
sprintf(pChkpDir, "%s%s%s", path, TD_DIRSEP, "checkpoints");
code = taosMulModeMkDir(pChkpDir, 0755);
code = taosMulModeMkDir(pChkpDir, 0755, true);
if (code != 0) {
qError("failed to prepare checkpoint dir, path:%s, reason:%s", path, tstrerror(code));
taosMemoryFree(pChkpDir);