My job adds the continuation to itself. Also my job may fail with exception, and then it will be retried automatically, exactly as expected.
However during the retry it will again create the same continuation, and if the job happens to complete this time - both continuations will run, which is not desirable.
I can of course add all continuations to the list and only add them after all try-catches so that there is only one continuation scheduled, but it adds some complexity to the code.
Are there any good ways for fixing this behavior?