Solaris AISolaris AI FlowDocs
Executions

Error Handling

How errors surface and how to fix common ones.

View as Markdown

When a node fails during execution, the workflow stops and the execution is marked as failed. Here's how to diagnose and fix issues.

Where errors appear

  • Execution history - failed runs show a red status
  • Run detail - the failed node is highlighted red with an error message
  • Workflow editor - during live execution, failed nodes show a red indicator

Error types

TypeCauseFix
Credential errorMissing or invalid API keyCheck Connections page, re-enter the key
API errorExternal service returned an errorCheck the error message - often rate limits or invalid parameters
TimeoutNode or execution exceeded time limitSimplify the workflow or reduce data volume
Config errorMissing required field on a nodeOpen the node settings and fill in required fields
SSRF blockedHTTP node tried to reach a private IPUse a public URL instead
Wallet errorTransaction signing failedCheck wallet balance and connection

Reading error details

In the Run Detail view, click the failed node. The error panel shows:

  • Error message - human-readable description
  • Error hint - suggested fix or context for the failure

Execution timeout

All executions have a 10-minute hard limit. If your workflow approaches this limit:

  • Remove unnecessary Delay nodes
  • Reduce data volumes (lower limit parameters)
  • Split into multiple smaller workflows

Stuck executions

Executions stuck in "running" for more than 10 minutes are automatically marked as failed by a background cleanup job. If you see this, the underlying action crashed mid-flight.

Next steps

On this page