-
        Self Checks
 1. Is this request related to a challenge you're experiencing? Tell me about your story.When I'm executing a complex workflow in the debug interface, it interrupts and displays the message: "Aborted: Maximum execution time exceeded: 1200.3s > 1200s" after 1200 seconds. I've searched the documentation, GitHub issues, and browsed all the pages on Deify, but I can't find where to set this parameter. I hope I can configure it; am I missing something? 🙏🙏🙏🙏🙏 2. Additional context or commentsNo response  | 
  
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
| 
        
 Hi @dabaisuv! I'm Dosu and I’m helping the dify team. You can increase the workflow execution timeout by setting the  To change it, edit your  Then restart your Dify containers for the change to take effect. This will allow longer-running workflows before hitting the timeout limit. The relevant configuration is documented in the codebase and  To reply, just mention @dosu. How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other    | 
  
Beta Was this translation helpful? Give feedback.
Hi @dabaisuv! I'm Dosu and I’m helping the dify team.
You can increase the workflow execution timeout by setting the
WORKFLOW_MAX_EXECUTION_TIMEenvironment variable. This variable controls the maximum allowed execution time (in seconds) for a single workflow. By default, it's set to 1200 seconds.To change it, edit your
.envfile or theenvironmentsection in yourdocker-compose.yamland set a higher value, for example:Then restart your Dify containers for the change to take effect. This will allow longer-running workflows before hitting the timeout limit. The relevant configuration is documented in the codebase and
.env.examplefile, and enforced in t…