trying to slow things down a little

This commit is contained in:
Saxon1 2018-05-05 14:26:01 +09:30
parent 2289bb8e5a
commit 5bb2bcc5f6
1 changed files with 2 additions and 4 deletions

View File

@ -392,11 +392,9 @@ func (r *revid) outputClips() {
}
// So that we don't fill up the log, once we reach the maxSendFailedErrorCount
// we will add some delay to slow things down until we have a connection again
if errorCount > maxSendFailedErrorCount {
time.Sleep(time.Duration(sendFailedDelay) * time.Second)
}
r.Log(Error, err2.Error())
if r.config.Output == NativeRtmp && errorCount > 10 {
if r.config.Output == NativeRtmp {
r.rtmpInst.EndSession()
r.rtmpInst = rtmp.NewRTMPSession(r.config.RtmpUrl, rtmpConnectionTimout)
err = r.rtmpInst.StartSession()