From 8e94c930ee93b2f29d52ad2c7f019ca333d7d2e7 Mon Sep 17 00:00:00 2001 From: Lantao Liu Date: Fri, 14 May 2021 16:43:09 -0700 Subject: [PATCH] Fix the uptime timestamp parsing. --- pkg/healthchecker/types/types_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/healthchecker/types/types_linux.go b/pkg/healthchecker/types/types_linux.go index 4a47edd37..de0abaec4 100644 --- a/pkg/healthchecker/types/types_linux.go +++ b/pkg/healthchecker/types/types_linux.go @@ -19,5 +19,5 @@ package types const ( DefaultCriCtl = "/usr/bin/crictl" DefaultCriSocketPath = "unix:///var/run/containerd/containerd.sock" - UptimeTimeLayout = "Mon 2006-01-02 15:04:05 UTC" + UptimeTimeLayout = "Mon 2006-01-02 15:04:05 MST" )