From 3926f7bfba954e143cdbff79eb31e6fe5a687693 Mon Sep 17 00:00:00 2001 From: Chad Roberts Date: Sat, 5 Aug 2023 07:45:25 -0400 Subject: [PATCH] Fixing imports --- pkg/auth/providers/publicapi/login.go | 3 ++- pkg/multiclustermanager/app.go | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pkg/auth/providers/publicapi/login.go b/pkg/auth/providers/publicapi/login.go index 012e05803d8..789f0edd350 100644 --- a/pkg/auth/providers/publicapi/login.go +++ b/pkg/auth/providers/publicapi/login.go @@ -4,13 +4,14 @@ import ( "context" "encoding/json" "fmt" - "github.com/rancher/rancher/pkg/agent/clean" "io/ioutil" "net/http" "strconv" "strings" "time" + "github.com/rancher/rancher/pkg/agent/clean" + "github.com/rancher/norman/httperror" "github.com/rancher/norman/types" v32 "github.com/rancher/rancher/pkg/apis/management.cattle.io/v3" diff --git a/pkg/multiclustermanager/app.go b/pkg/multiclustermanager/app.go index b6d27190d6f..428572421ff 100644 --- a/pkg/multiclustermanager/app.go +++ b/pkg/multiclustermanager/app.go @@ -2,12 +2,13 @@ package multiclustermanager import ( "context" - "github.com/rancher/rancher/pkg/agent/clean" "net/http" "os" "sync" "time" + "github.com/rancher/rancher/pkg/agent/clean" + "github.com/pkg/errors" "github.com/rancher/norman/types" "github.com/rancher/rancher/pkg/auth/providerrefresh"