Merge pull request #130221 from soltysh/flake_129779

Add more log information to help debug flake #129779
This commit is contained in:
Kubernetes Prow Robot 2025-02-19 06:46:26 -08:00 committed by GitHub
commit f0077a3689
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -419,7 +419,7 @@ var _ = SIGDescribe("Deployment", func() {
return found, nil
}
default:
framework.Logf("observed event type %v", event.Type)
framework.Logf("observed event type %#v", event)
}
return false, nil
})

View File

@ -547,6 +547,8 @@ func testRSLifeCycle(ctx context.Context, f *framework.Framework) {
framework.Logf("observed Replicaset %v in namespace %v with ReadyReplicas %v found %v", rset.ObjectMeta.Name, rset.ObjectMeta.Namespace, rset.Status.ReadyReplicas, found)
}
return found, nil
} else {
framework.Logf("observed event type %#v", event)
}
return false, nil
})