Skip to content

Retry decorator

Roberto Prevato edited this page Sep 21, 2019 · 3 revisions
from essentials.decorators import retry


@retry()
def function_that_supports_automatic_retries():
    # do something...
    pass


@retry()
async def async_function_that_supports_automatic_retries():
    # do await something...
    pass
Clone this wiki locally