Skip to content

Commit

Permalink
Merge pull request #4709 from taosdata/feature/wal
Browse files Browse the repository at this point in the history
Feature/wal
  • Loading branch information
guanshengliang authored Dec 25, 2020
2 parents 519fece + 033b15c commit 5daeac0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/common/src/tglobal.c
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ float tsTotalTmpDirGB = 0;
float tsTotalDataDirGB = 0;
float tsAvailTmpDirectorySpace = 0;
float tsAvailDataDirGB = 0;
float tsReservedTmpDirectorySpace = 0.1f;
float tsMinimalDataDirGB = 0.5f;
float tsReservedTmpDirectorySpace = 1.0f;
float tsMinimalDataDirGB = 1.0f;
int32_t tsTotalMemoryMB = 0;
int32_t tsVersion = 0;

Expand Down
2 changes: 1 addition & 1 deletion src/util/src/tlog.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ int32_t tsLogKeepDays = 0;
int32_t tsAsyncLog = 1;
float tsTotalLogDirGB = 0;
float tsAvailLogDirGB = 0;
float tsMinimalLogDirGB = 0.1f;
float tsMinimalLogDirGB = 1.0f;
#ifdef _TD_POWER_
char tsLogDir[TSDB_FILENAME_LEN] = "/var/log/power";
#else
Expand Down

0 comments on commit 5daeac0

Please sign in to comment.