aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2020-03-07 21:19:24 -0500
committerGitHub <noreply@github.com>2020-03-07 21:19:24 -0500
commitae9948ce044efda3f6e674383a743f7e30428e37 (patch)
treedc50b8c3a0ff843342fb23bb4394a45c77f71fbd /Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs
parent4c2b543b307b55b2220472c59396b9b4a604cfb7 (diff)
parent3d563ca3a3c8398617ef014f53ba9d0937a55d94 (diff)
Merge branch 'master' into logging-migration
Diffstat (limited to 'Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs')
-rw-r--r--Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs b/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs
index db0bef885..279e7bbea 100644
--- a/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs
+++ b/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs
@@ -8,7 +8,7 @@ using Microsoft.Extensions.Logging;
namespace Jellyfin.Server.Migrations.Routines
{
/// <summary>
- /// Updater that takes care of bringing configuration up to 10.5.0 standards.
+ /// Disable transcode throttling for all installations since it is currently broken for certain video formats.
/// </summary>
internal class DisableTranscodingThrottling : IMigrationRoutine
{
@@ -18,7 +18,7 @@ namespace Jellyfin.Server.Migrations.Routines
/// <inheritdoc/>
public void Perform(CoreAppHost host, ILogger logger)
{
- // Set EnableThrottling to false as it wasn't used before, and in 10.5.0 it may introduce issues
+ // Set EnableThrottling to false since it wasn't used before and may introduce issues
var encoding = ((IConfigurationManager)host.ServerConfigurationManager).GetConfiguration<EncodingOptions>("encoding");
if (encoding.EnableThrottling)
{