Skip to content

Commit

Permalink
Merge pull request #10672 from nolouch/fix-probing-log
Browse files Browse the repository at this point in the history
api/rafthttp: fix the probing status log print
  • Loading branch information
jingyih authored Apr 25, 2019
2 parents 8146e1e + decc0d5 commit cca0d5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions etcdserver/api/rafthttp/probing_status.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ func monitorProbingStatus(lg *zap.Logger, s probing.Status, id string, roundTrip
"prober found high clock drift",
zap.String("round-tripper-name", roundTripperName),
zap.String("remote-peer-id", id),
zap.Duration("clock-drift", s.SRTT()),
zap.Duration("rtt", s.ClockDiff()),
zap.Duration("clock-drift", s.ClockDiff()),
zap.Duration("rtt", s.SRTT()),
zap.Error(s.Err()),
)
} else {
Expand Down

0 comments on commit cca0d5c

Please sign in to comment.