File tree 2 files changed +1
-3
lines changed
2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -400,7 +400,6 @@ func getUnexpectedNginxErrorLogs(ngfPodName string) string {
400
400
errorLogs := getNginxErrorLogs (ngfPodName )
401
401
402
402
for _ , line := range strings .Split (errorLogs , "\n " ) {
403
-
404
403
if ! slices .ContainsFunc (expectedErrStrings , func (s string ) bool {
405
404
return strings .Contains (line , s )
406
405
}) {
@@ -423,7 +422,6 @@ func checkNGFContainerLogsForErrors(ngfPodName string) {
423
422
for _ , line := range strings .Split (ngfLogs , "\n " ) {
424
423
Expect (line ).ToNot (ContainSubstring ("\" level\" :\" error\" " ), line )
425
424
}
426
-
427
425
}
428
426
429
427
func checkLeaderLeaseChange (originalLeaseName string ) error {
Original file line number Diff line number Diff line change @@ -598,12 +598,12 @@ type reconfigTestResults struct {
598
598
TestDescription string
599
599
TimeToReadyTotal string
600
600
TimeToReadyAvgSingle string
601
+ NGINXErrorLogs string
601
602
EventsBuckets []framework.Bucket
602
603
ReloadBuckets []framework.Bucket
603
604
NumResources int
604
605
NGINXReloads int
605
606
NGINXReloadAvgTime int
606
- NGINXErrorLogs string
607
607
EventsCount int
608
608
EventsAvgTime int
609
609
}
You can’t perform that action at this time.
0 commit comments