Skip to content

Commit

Permalink
Allow longer retries for FTP failures.
Browse files Browse the repository at this point in the history
  • Loading branch information
frankdejonge committed Jun 15, 2021
1 parent b95af22 commit 27ba26d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AdapterTestUtilities/RetryOnTestException.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ protected function runScenario(callable $scenario): void
}

$firstTryAt = \time();
$lastTryAt = $firstTryAt + 20;
$lastTryAt = $firstTryAt + 30;

while (time() <= $lastTryAt) {
try {
Expand Down

0 comments on commit 27ba26d

Please sign in to comment.