Skip to content

Commit 5d65fa5

Browse files
committed
Want gcs in millis, not micros
1 parent 20ada42 commit 5d65fa5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ func (t *transport) gc(gen generation) {
209209
ioutil.ReadAll(resp.Body)
210210
resp.Body.Close()
211211
}
212-
fmt.Printf("%s,%v", gen.string(), end.Sub(start).Nanoseconds()/1e3)
212+
fmt.Printf("%s,%v", gen.string(), end.Sub(start).Nanoseconds()/1e6)
213213
}
214214

215215
////////// PROXY

0 commit comments

Comments
 (0)