diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2020-03-08 15:33:15 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-08 15:33:15 -0400 |
| commit | d8d37671ff0a009a106320c20851c78f5c666747 (patch) | |
| tree | 1668c83d55c733108c1fa027ff76af7bbda9eebf /Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs | |
| parent | 86190aa7e995c490509e65159e4c1f76cda61cc3 (diff) | |
| parent | 9e89cbbc3ad451b510a00fd7e214f6b942176f47 (diff) | |
Merge pull request #2535 from mark-monteiro/logging-migration
Create Logging Configuration Heirarchy
Diffstat (limited to 'Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs')
| -rw-r--r-- | Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs b/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs index 936c3640e..673f0e415 100644 --- a/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs +++ b/Jellyfin.Server/Migrations/Routines/DisableTranscodingThrottling.cs @@ -10,9 +10,12 @@ namespace Jellyfin.Server.Migrations.Routines /// <summary> /// Disable transcode throttling for all installations since it is currently broken for certain video formats. /// </summary> - internal class DisableTranscodingThrottling : IUpdater + internal class DisableTranscodingThrottling : IMigrationRoutine { /// <inheritdoc/> + public Guid Id => Guid.Parse("{4124C2CD-E939-4FFB-9BE9-9B311C413638}"); + + /// <inheritdoc/> public string Name => "DisableTranscodingThrottling"; /// <inheritdoc/> |
