mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-28 04:51:45 +02:00
New: Change Automation timeout to 3min (#3951)
* New: Change Automation timeout to 3min * Fixed: Workaround netcore/selenium HTTP bug * try without timespan override * Update AutomationTest.cs
This commit is contained in:
@@ -36,7 +36,9 @@ namespace NzbDrone.Automation.Test
|
|||||||
{
|
{
|
||||||
var options = new FirefoxOptions();
|
var options = new FirefoxOptions();
|
||||||
options.AddArguments("--headless");
|
options.AddArguments("--headless");
|
||||||
driver = new FirefoxDriver(options);
|
FirefoxDriverService service = FirefoxDriverService.CreateDefaultService();
|
||||||
|
// service.Host = "::1"; // Workaround netcore/selenium bug https://github.com/SeleniumHQ/selenium/issues/7840
|
||||||
|
driver = new FirefoxDriver(service, options, new System.TimeSpan(0,3,0));
|
||||||
|
|
||||||
_runner = new NzbDroneRunner(LogManager.GetCurrentClassLogger());
|
_runner = new NzbDroneRunner(LogManager.GetCurrentClassLogger());
|
||||||
_runner.KillAll();
|
_runner.KillAll();
|
||||||
|
Reference in New Issue
Block a user