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 9ab4888 commit bb61566Copy full SHA for bb61566
stage/stage.go
@@ -225,7 +225,7 @@ func (s *Stage) run(ctx context.Context) (returnErr error) {
225
s.prepareClient()
226
s.propagateStates()
227
if len(s.Queries)+len(s.QueryFiles) > 0 {
228
- if *s.RandomExecution {
+ if s.RandomExecution != nil && *s.RandomExecution {
229
returnErr = s.runRandomly(ctx)
230
} else {
231
returnErr = s.runSequentially(ctx)
0 commit comments