We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10ce4bc commit e1c23deCopy full SHA for e1c23de
test/long_term_stability/spec_subjects/spec_subjects.go
@@ -267,7 +267,13 @@ spec:
267
268
PContext("Ingress Controller is crashing", func() {
269
It("it 0", func() {
270
- Ω(true).Should(BeTrue())
+ for i := 0; i < 5; i++ {
271
+ go s.RestartAPISIXDeploy()
272
+ time.Sleep(2 * time.Minute)
273
+ }
274
+
275
+ err := s.DownloadLocustReport(fmt.Sprintf("%02d_ingress_controller_is_creshing", it))
276
+ Expect(err).NotTo(HaveOccurred(), "getting locust report")
277
})
278
279
0 commit comments