From 6924fdac22512ad55ec565c5b4d2debb67415669 Mon Sep 17 00:00:00 2001 From: Joel Wurtz Date: Fri, 22 Jun 2018 10:51:14 +0200 Subject: [PATCH] Add information about async on retry plugin --- plugins/retry.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/retry.rst b/plugins/retry.rst index 969b426..b3b3e71 100644 --- a/plugins/retry.rst +++ b/plugins/retry.rst @@ -27,6 +27,12 @@ place something like the :doc:`ErrorPlugin ` later in the plugin chain:: Contrary to the :doc:`redirect`, the retry plugin does not restart the chain but simply tries again from the current position. +Async +----- + +This plugin is not fully compatible with asynchronous behavior, as the wait between retries is done +with a blocking call to a sleep function. + Options -------