Index: prober/go/prober/main.go |
diff --git a/prober/go/prober/main.go b/prober/go/prober/main.go |
index f8a280a8c0bb5c597a39115d75bd4426d4f4e1ad..447a2612711f15fd176f2976911bb1ec83227a5a 100644 |
--- a/prober/go/prober/main.go |
+++ b/prober/go/prober/main.go |
@@ -275,7 +275,7 @@ func probeOneRound(cfg Probes, c *http.Client) { |
} |
probe.failure.Update(0) |
- probe.latency.Update(d.Nanoseconds() * 1000 * 1000) |
+ probe.latency.Update(d.Nanoseconds() / (1000 * 1000)) |
borenet
2015/04/29 19:15:56
Again, this could be rewritten as (d.Nanoseconds()
jcgregorio
2015/04/29 19:21:10
Fixed in next CL.
|
} |
} |