Merge pull request #1819 from nvllsvm/ffmpeg_kill

Ignore exception when attempting to kill ffmpeg that has exited
pull/1820/head
Joshua M. Boniface 5 years ago committed by GitHub
commit 180fb857ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -610,9 +610,8 @@ namespace MediaBrowser.Api
process.Kill();
}
}
catch (Exception ex)
catch (InvalidOperationException)
{
Logger.LogError(ex, "Error killing transcoding job for {Path}", job.Path);
}
}
}

Loading…
Cancel
Save