Browse Source

fix ffmpeg version health check for vaapi docker (#1179)

pull/1180/head
Jason Dove 3 years ago committed by GitHub
parent
commit
f320d84874
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      ErsatzTV.Infrastructure/Health/Checks/FFmpegVersionHealthCheck.cs

2
ErsatzTV.Infrastructure/Health/Checks/FFmpegVersionHealthCheck.cs

@ -9,7 +9,7 @@ namespace ErsatzTV.Infrastructure.Health.Checks; @@ -9,7 +9,7 @@ namespace ErsatzTV.Infrastructure.Health.Checks;
public class FFmpegVersionHealthCheck : BaseHealthCheck, IFFmpegVersionHealthCheck
{
private const string BundledVersion = "5.1";
private const string BundledVersionVaapi = "5.1";
private const string BundledVersionVaapi = "N-109960-g4f9d38e65d";
private readonly IConfigElementRepository _configElementRepository;
public FFmpegVersionHealthCheck(IConfigElementRepository configElementRepository) =>

Loading…
Cancel
Save