enh: get timestamp thru clock_gettime(CLOCK_MONOTONIC,) for taosGetMonotonicMs()

This commit is contained in:
Benguang Zhao 2022-11-15 10:26:32 +08:00
parent c0c1cd8211
commit cf14200dfe
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ int64_t taosGetMonotonicMs() {
#if 0 #if 0
return getMonotonicUs() / 1000; return getMonotonicUs() / 1000;
#else #else
return taosGetTimestampMs(); return taosGetMonoTimestampMs();
#endif #endif
} }