TODO: replace with time.UnixMillis after dropping version <1.17 from CI workflows
(ms int64)
| 24 | |
| 25 | // TODO: replace with time.UnixMillis after dropping version <1.17 from CI workflows |
| 26 | func unixMS(ms int64) time.Time { |
| 27 | return time.Unix(ms/msPerS, (ms%msPerS)*nsPerMS) |
| 28 | } |
| 29 | |
| 30 | func doRuntimeAPILoop(ctx context.Context, client *runtimeAPIClient, handler *handlerOptions) error { |
| 31 | for { |
no outgoing calls
no test coverage detected
searching dependent graphs…