mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-25 12:43:23 +00:00
fix(leaderelection): nil check in OnStoppedLeading func
This commit is contained in:
parent
1ef7d66879
commit
c94baacfff
@ -50,7 +50,9 @@ func RunWithLeaderElection(ctx context.Context, config *rest.Config, newRunnerFn
|
|||||||
run(ctx, 1)
|
run(ctx, 1)
|
||||||
},
|
},
|
||||||
OnStoppedLeading: func() {
|
OnStoppedLeading: func() {
|
||||||
|
if cancel != nil {
|
||||||
cancel()
|
cancel()
|
||||||
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user