mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 06:55:25 +02:00
[ticket/16078] Try using retries for timeout issue
The timeout only seems to occur on the first test so let's see what a retry can do to help with this issue. PHPBB3-16078
This commit is contained in:
parent
c75c13e555
commit
1ba0ae6e85
@ -158,7 +158,23 @@ class phpbb_ui_test_case extends phpbb_test_case
|
|||||||
|
|
||||||
public function visit($path)
|
public function visit($path)
|
||||||
{
|
{
|
||||||
$this->getDriver()->get(self::$root_url . $path);
|
// Retry three times on curl issues, e.g. timeout
|
||||||
|
try
|
||||||
|
{
|
||||||
|
$this->getDriver()->get(self::$root_url . $path);
|
||||||
|
}
|
||||||
|
catch (Facebook\WebDriver\Exception\WebDriverCurlException $exception)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
$this->getDriver()->get(self::$root_url . $path);
|
||||||
|
}
|
||||||
|
catch (Facebook\WebDriver\Exception\WebDriverCurlException $exception)
|
||||||
|
{
|
||||||
|
// Last try, throw exception after this one fails
|
||||||
|
$this->getDriver()->get(self::$root_url . $path);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static protected function recreate_database($config)
|
static protected function recreate_database($config)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user