Skip to content

Commit 37954c3

Browse files
committed
decreasing max_attempts
1 parent 7824625 commit 37954c3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/retry_decorator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
def retry_on_failure(
99
*,
10-
max_attempts: int = 3,
10+
max_attempts: int = 2,
1111
exception_types: Tuple[Type[BaseException], ...] = (AssertionError,),
1212
retry_delay_seconds: float = 5.0,
1313
) -> Callable[[Callable[..., Any]], Callable[..., None]]:

0 commit comments

Comments
 (0)