aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVasily <just.one.man@yandex.ru>2019-10-16 16:13:59 +0300
committerVasily <just.one.man@yandex.ru>2019-10-16 16:13:59 +0300
commit6b6fede2e0b1c1edd06af3bcdbf5c5ad04d07638 (patch)
tree2c27991c7785ce3c3debcc01098f91825e381e4e
parentadccc18298f4ebba511b68d5af9e72f78de5e5e8 (diff)
Address review comments
-rw-r--r--Emby.Server.Implementations/HttpServer/HttpListenerHost.cs1
-rw-r--r--MediaBrowser.Api/Playback/BaseStreamingService.cs8
2 files changed, 5 insertions, 4 deletions
diff --git a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
index 0ebdf7d17..cd2a7dcf0 100644
--- a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
+++ b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
@@ -543,6 +543,7 @@ namespace Emby.Server.Implementations.HttpServer
{
_logger.LogDebug("Sending HTTP Response 500 in response to {Url}", urlToLog);
}
+
stopWatch.Stop();
var elapsed = stopWatch.Elapsed;
if (elapsed.TotalMilliseconds > 500)
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs
index 2e9c1c3d4..fa8fbe261 100644
--- a/MediaBrowser.Api/Playback/BaseStreamingService.cs
+++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs
@@ -296,13 +296,13 @@ namespace MediaBrowser.Api.Playback
_ = new JobLogger(Logger).StartStreamingLog(state, process.StandardError.BaseStream, logStream);
// Wait for the file to exist before proceeeding
- var waitFor = state.WaitForPath ?? outputPath;
- Logger.LogDebug("Waiting for the creation of {0}", waitFor);
- while (!File.Exists(waitFor) && !transcodingJob.HasExited)
+ var ffmpegTargetFile = state.WaitForPath ?? outputPath;
+ Logger.LogDebug("Waiting for the creation of {0}", ffmpegTargetFile);
+ while (!File.Exists(ffmpegTargetFile) && !transcodingJob.HasExited)
{
await Task.Delay(100, cancellationTokenSource.Token).ConfigureAwait(false);
}
- Logger.LogDebug("File {0} created or transcoding has finished", waitFor);
+ Logger.LogDebug("File {0} created or transcoding has finished", ffmpegTargetFile);
if (state.IsInputVideo && transcodingJob.Type == TranscodingJobType.Progressive && !transcodingJob.HasExited)
{