Skip to content

Commit

Permalink
swicth k8s deprecated method to new method (#2664)
Browse files Browse the repository at this point in the history
Signed-off-by: Icarus9913 <icaruswu66@qq.com>
  • Loading branch information
Icarus9913 authored Nov 15, 2023
1 parent 8ef28af commit 2478b35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/k8sapi/k8sutils.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ func CheckAPIServerConnectivity() error {
log.Infof("Testing communication with server")
// Reconcile the API server query after waiting for a second, as the request
// times out in one second if it fails to connect to the server
return wait.PollImmediateInfinite(2*time.Second, func() (bool, error) {
return wait.PollUntilContextCancel(context.Background(), 2*time.Second, true, func(ctx context.Context) (bool, error) {
version, err := clientSet.Discovery().ServerVersion()
if err != nil {
// When times out return no error, so the PollInfinite will retry with the given interval
Expand Down

0 comments on commit 2478b35

Please sign in to comment.