You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Don't try to check the GitHub check runs, but instead check the status
of the pipelinerun itself to make sure they are not kept as Pending (due
of crash of the controller for example)
runcnx.Clients.Log.Fatalf("Too many running checks %d our maxAmountOfConcurrentPRS == %d",
126
-
runningChecks, numberOfPipelineRuns)
127
-
}
128
-
// it's high so we limit our ratelimitation
129
-
time.Sleep(10*time.Second)
104
+
runcnx.Clients.Log.Infof("number of unsuccessful PR %d out of %d, waiting 10s more, %d/%d", unsuccessful, numberOfPipelineRuns*2, i, maxLoop)
105
+
// it's high because it takes time to process on kind
106
+
time.Sleep(15*time.Second)
107
+
}
108
+
if!finished {
109
+
t.Errorf("the %d pipelineruns has not successfully finished, some of them are still pending or it's abnormally slow to process the Q", numberOfPipelineRuns)
0 commit comments