Skip to content

Commit

Permalink
recordtester: Increase time for stream health alerts to 2min
Browse files Browse the repository at this point in the history
  • Loading branch information
victorges committed Jul 26, 2022
1 parent 0959ca3 commit 0e9fb50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/app/recordtester/recordtester_app.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ func (rt *recordTester) Start(fileName string, testDuration, pauseDuration time.
testerFuncs := []testers.StartTestFunc{}
if rt.streamHealth {
testerFuncs = append(testerFuncs, func(ctx context.Context, mediaURL string, waitForTarget time.Duration, opts testers.Streamer2Options) testers.Finite {
return testers.NewStreamHealth(ctx, stream.ID, rt.lanalyzers, waitForTarget)
return testers.NewStreamHealth(ctx, stream.ID, rt.lanalyzers, 2*time.Minute)
})
}

Expand Down

0 comments on commit 0e9fb50

Please sign in to comment.