From fda3f0ad9ba93ab44f5754bb9dd3e6b81ccb85af Mon Sep 17 00:00:00 2001 From: Joshua Boniface Date: Fri, 14 Dec 2018 23:04:04 -0500 Subject: [PATCH] Up the timerDuration back to 10s, 2s is too low --- MediaBrowser.Api/ApiEntryPoint.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/MediaBrowser.Api/ApiEntryPoint.cs b/MediaBrowser.Api/ApiEntryPoint.cs index ef74aecb2a..b3f1923e5b 100644 --- a/MediaBrowser.Api/ApiEntryPoint.cs +++ b/MediaBrowser.Api/ApiEntryPoint.cs @@ -421,15 +421,14 @@ namespace MediaBrowser.Api return; } - /* var timerDuration = 10000; + /* if (job.Type != TranscodingJobType.Progressive) { timerDuration = 60000; } */ - var timerDuration = 2000; job.PingTimeout = timerDuration; job.LastPingDate = DateTime.UtcNow;