From 1b4bf420b47d6ebc2d12200ac25cc96c37d5ce87 Mon Sep 17 00:00:00 2001 From: "Lubomir I. Ivanov" Date: Mon, 17 May 2021 19:54:08 +0300 Subject: [PATCH] kubeadm: use git.k8s.io link in app/util/error.go Adapt for the future transition of kubernetes/community to have "main" as its development branch. Use: https://git.k8s.io/community/... --- cmd/kubeadm/app/util/error.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kubeadm/app/util/error.go b/cmd/kubeadm/app/util/error.go index 8757a3071a0..131fbf01929 100644 --- a/cmd/kubeadm/app/util/error.go +++ b/cmd/kubeadm/app/util/error.go @@ -76,7 +76,7 @@ func checkErr(err error, handleErr func(string, int)) { // assume that the "v" flag contains a parseable Int32 as per klog's "Level" type alias, // thus no error from ParseInt is handled here. if v, e := strconv.ParseInt(f.Value.String(), 10, 32); e == nil { - // https://github.com/kubernetes/community/blob/master/contributors/devel/sig-instrumentation/logging.md + // https://git.k8s.io/community/contributors/devel/sig-instrumentation/logging.md // klog.V(5) - Trace level verbosity if v > 4 { msg = fmt.Sprintf("%+v", err)