-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Labels
good first issueGood for newcomersGood for newcomersquestionFurther information is requestedFurther information is requested
Description
Request for comment (RFC) on potential feature:
Allow predicate with signature Callable[[int], bool] to be used for status_forcelist.
This can allow a user to add range of status codes without explicitly enumerating them.
Example:
from httpx_retries import Retry
def is_5XX_status(code: int) -> bool:
return code >= 500
rules = Retry(status_forcelist=is_5XX_status)Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomersquestionFurther information is requestedFurther information is requested