<div dir="ltr">Hi all,<br><div>It is not clear how to configure retry for a task.</div><div>I have a task which got fatal_error because of an incorrect accessKey for an external resource. The task is suspended after the error.</div><div>I'd like to have another behavior - task must retry attempt to execute after a minute.</div><div>I configured errorHandling in the activity section but still have the same result - the task is suspended after an error and there is any retry. What's wrong? </div><div><br></div><div>    <activity><br></div><div>    .......</div><div>        <controlFlow><br>            <errorHandling><br>                <entry><br>                    <reaction><br>                        <retryLater><br>                            <initialInterval>PT1M</initialInterval><br>                            <nextInterval>PT3M</nextInterval><br>                            <retryLimit>3</retryLimit><br>                        </retryLater><br>                    </reaction><br>                </entry><br>           </errorHandling><br>        </controlFlow><br>    </activity><br></div></div>