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 aebf0a6 commit 1247842Copy full SHA for 1247842
pkg/cmd/openshift-tests/monitor/run/run_monitor_command.go
@@ -183,15 +183,12 @@ func (o *RunMonitorOptions) Run() error {
183
}()
184
signal.Notify(abortCh, syscall.SIGINT, syscall.SIGTERM)
185
186
- monitorTestInfo := monitortestframework.MonitorTestInitializationInfo{
187
- ClusterStabilityDuringTest: monitortestframework.Stable,
188
- }
189
recorder := monitor.WrapWithJSONLRecorder(monitor.NewRecorder(), o.Out, o.DisplayFilterFn)
190
m := monitor.NewMonitor(
191
recorder,
192
restConfig,
193
o.ArtifactDir,
194
- defaultmonitortests.NewMonitorTestsFor(monitorTestInfo),
+ o.MonitorTests,
195
)
196
if err := m.Start(ctx); err != nil {
197
return err
0 commit comments