Fix wrong time unit (#3203)

This commit is contained in:
kezhenxu94 2019-08-02 13:53:03 +08:00 committed by 吴晟 Wu Sheng
parent 49f50a24a4
commit 4db007ee79
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ public class GRPCStreamServiceStatus {
hasWaited += recheckCycle;
if (recheckCycle >= maxCycle) {
logger.warn("Collector traceSegment service doesn't response in {} seconds.", hasWaited);
logger.warn("Collector traceSegment service doesn't response in {} seconds.", hasWaited / 1000);
} else {
recheckCycle = recheckCycle * 2 > maxCycle ? maxCycle : recheckCycle * 2;
}