set telemetryReporting default val to false

This commit is contained in:
Shengliang Guan 2020-08-02 11:48:42 +00:00
parent 8a68dd6e6b
commit 1fe3dbebfb
3 changed files with 3 additions and 1 deletions

View File

@ -40,7 +40,7 @@ uint16_t tsSyncPort = 6040;
int32_t tsStatusInterval = 1; // second int32_t tsStatusInterval = 1; // second
int32_t tsNumOfMnodes = 3; int32_t tsNumOfMnodes = 3;
int32_t tsEnableVnodeBak = 1; int32_t tsEnableVnodeBak = 1;
int32_t tsEnableTelemetryReporting = 1; int32_t tsEnableTelemetryReporting = 0;
// common // common
int32_t tsRpcTimer = 1000; int32_t tsRpcTimer = 1000;

View File

@ -191,6 +191,7 @@ class TDDnode:
self.cfg("charset", "UTF-8") self.cfg("charset", "UTF-8")
self.cfg("asyncLog", "0") self.cfg("asyncLog", "0")
self.cfg("anyIp", "0") self.cfg("anyIp", "0")
self.cfg("tsEnableTelemetryReporting", "0")
self.cfg("dDebugFlag", "135") self.cfg("dDebugFlag", "135")
self.cfg("mDebugFlag", "135") self.cfg("mDebugFlag", "135")
self.cfg("sdbDebugFlag", "135") self.cfg("sdbDebugFlag", "135")

View File

@ -147,5 +147,6 @@ echo "asyncLog 0" >> $TAOS_CFG
echo "numOfMnodes 1" >> $TAOS_CFG echo "numOfMnodes 1" >> $TAOS_CFG
echo "locale en_US.UTF-8" >> $TAOS_CFG echo "locale en_US.UTF-8" >> $TAOS_CFG
echo "fsync 0" >> $TAOS_CFG echo "fsync 0" >> $TAOS_CFG
echo "tsEnableTelemetryReporting 0" >> $TAOS_CFG
echo " " >> $TAOS_CFG echo " " >> $TAOS_CFG