未验证 提交 d9cfbb4d 编写于 作者: F Filip Navara 提交者: GitHub

Disable KerberosExecutor on LinuxBionic, it doesn't have GSSAPI libraries (#74709)

上级 b11d401b
......@@ -29,7 +29,9 @@ public class KerberosExecutor : IDisposable
private readonly ITestOutputHelper _testOutputHelper;
public static bool IsSupported { get; } =
RemoteExecutor.IsSupported && (OperatingSystem.IsLinux() || OperatingSystem.IsMacOS());
RemoteExecutor.IsSupported &&
!PlatformDetection.IsLinuxBionic &&
(OperatingSystem.IsLinux() || OperatingSystem.IsMacOS());
public const string DefaultAdminPassword = "PLACEHOLDERadmin.";
public const string DefaultUserPassword = "PLACEHOLDERcorrect20";
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册