From 633344e5bb063ec5342070d89ded950ba79e05a6 Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Fri, 6 Jul 2018 21:53:03 +0200 Subject: [PATCH] Disabled httpbin.org tests for now due to the site being flaky. --- src/NzbDrone.Common.Test/Http/HttpClientFixture.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/NzbDrone.Common.Test/Http/HttpClientFixture.cs b/src/NzbDrone.Common.Test/Http/HttpClientFixture.cs index d3e97269a..bf890a81b 100644 --- a/src/NzbDrone.Common.Test/Http/HttpClientFixture.cs +++ b/src/NzbDrone.Common.Test/Http/HttpClientFixture.cs @@ -34,7 +34,8 @@ namespace NzbDrone.Common.Test.Http [OneTimeSetUp] public void FixtureSetUp() { - var candidates = new[] { "eu.httpbin.org", "httpbin.org", "www.httpbin.org" }; + var candidates = new[] { "eu.httpbin.org", /*"httpbin.org",*/ "www.httpbin.org" }; + // httpbin.org is broken right now, occassionally redirecting to https if it's unavailable. _httpBinHosts = candidates.Where(IsTestSiteAvailable).ToArray(); TestLogger.Info($"{candidates.Length} TestSites available.");