Skip to content

Retry failed activity #241

Answered by rmcdaniel
Joel-Jensen asked this question in Q&A
Jun 18, 2025 · 1 comments · 1 reply
Discussion options

You must be logged in to vote

This is where it is important to make the distinction between workflow status and business status.

  • Workflow status: Reflects whether the system thinks the workflow execution is done. If it throws an exception and hits retry limits, it's failed.
  • Business status: Reflects whether your domain logic is done. You might be waiting for human approval, an external event, or manual repair.

Example

class MyWorkflow extends Workflow
{
    private bool $readyToRetry = false;

    #[SignalMethod]
    public function retry()
    {
        $this->readyToRetry = true;
    }

    public function execute()
    {
        while (true) {
            try {
                yield ActivityStub::make(MyRiskyActi…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@Joel-Jensen
Comment options

Answer selected by Joel-Jensen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy