mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-27 13:37:30 +00:00
Merge pull request #76189 from soltysh/fix_legacy_podautoscaler
Fix flaky legacy pod autoscaler test
This commit is contained in:
commit
deb48e331a
@ -472,7 +472,11 @@ func (tc *legacyTestCase) runTest(t *testing.T) {
|
|||||||
if tc.finished {
|
if tc.finished {
|
||||||
return true, &v1.Event{}, nil
|
return true, &v1.Event{}, nil
|
||||||
}
|
}
|
||||||
obj := action.(core.CreateAction).GetObject().(*v1.Event)
|
create, ok := action.(core.CreateAction)
|
||||||
|
if !ok {
|
||||||
|
return false, nil, nil
|
||||||
|
}
|
||||||
|
obj := create.GetObject().(*v1.Event)
|
||||||
if tc.verifyEvents {
|
if tc.verifyEvents {
|
||||||
switch obj.Reason {
|
switch obj.Reason {
|
||||||
case "SuccessfulRescale":
|
case "SuccessfulRescale":
|
||||||
|
Loading…
Reference in New Issue
Block a user