提交 2f9b68a9 编写于 作者: H Hui Li

[TD-1625]

上级 fa874237
...@@ -41,7 +41,7 @@ static pthread_t tsTelemetryThread; ...@@ -41,7 +41,7 @@ static pthread_t tsTelemetryThread;
#define TELEMETRY_SERVER "telemetry.taosdata.com" #define TELEMETRY_SERVER "telemetry.taosdata.com"
#define TELEMETRY_PORT 80 #define TELEMETRY_PORT 80
#define REPORT_INTERVAL 100 // 86400 #define REPORT_INTERVAL 86400
static void beginObject(SBufferWriter* bw) { static void beginObject(SBufferWriter* bw) {
tbufWriteChar(bw, '{'); tbufWriteChar(bw, '{');
...@@ -244,7 +244,7 @@ static void sendTelemetryReport() { ...@@ -244,7 +244,7 @@ static void sendTelemetryReport() {
static void* telemetryThread(void* param) { static void* telemetryThread(void* param) {
struct timespec end = {0}; struct timespec end = {0};
clock_gettime(CLOCK_REALTIME, &end); clock_gettime(CLOCK_REALTIME, &end);
end.tv_sec += 10; //300; // wait 5 minutes before send first report end.tv_sec += 300; // wait 5 minutes before send first report
while (1) { while (1) {
if (sem_timedwait(&tsExitSem, &end) == 0) { if (sem_timedwait(&tsExitSem, &end) == 0) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册