From b5a7ef9a7eb1036583f97fc630a31a2b0981642c Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Thu, 15 Jun 2023 13:29:41 +0800 Subject: [PATCH] fix: fix syntax error. --- include/common/tglobal.h | 1 + source/common/src/tglobal.c | 1 + 2 files changed, 2 insertions(+) diff --git a/include/common/tglobal.h b/include/common/tglobal.h index b08916f891..cd423bf4c9 100644 --- a/include/common/tglobal.h +++ b/include/common/tglobal.h @@ -83,6 +83,7 @@ extern int64_t tsVndCommitMaxIntervalMs; extern int64_t tsMndSdbWriteDelta; extern int64_t tsMndLogRetention; extern int8_t tsGrant; +extern bool tsMndSkipGrant; // monitor extern bool tsEnableMonitor; diff --git a/source/common/src/tglobal.c b/source/common/src/tglobal.c index 9a027366ef..22a0a77d6a 100644 --- a/source/common/src/tglobal.c +++ b/source/common/src/tglobal.c @@ -75,6 +75,7 @@ int64_t tsVndCommitMaxIntervalMs = 600 * 1000; int64_t tsMndSdbWriteDelta = 200; int64_t tsMndLogRetention = 2000; int8_t tsGrant = 1; +bool tsMndSkipGrant = false; // monitor bool tsEnableMonitor = true; -- GitLab