parseDurationString parses a duration string back to time.Duration (best effort)
(s string)
| 617 | |
| 618 | // parseDurationString parses a duration string back to time.Duration (best effort) |
| 619 | func parseDurationString(s string) time.Duration { |
| 620 | d, _ := time.ParseDuration(s) |
| 621 | return d |
| 622 | } |
| 623 | |
| 624 | // extractPreAgentStepErrors scans workflow step log files for failure content when the |
| 625 | // agent never executed (no agent-stdio.log present). This surfaces errors from pre-agent |
no outgoing calls