ApplicationCreateFailed is emitted when the creation flow failed, with the step it failed at.
(tracker *FlowTracker, err error)
| 233 | // ApplicationCreateFailed is emitted when the creation flow failed, with the |
| 234 | // step it failed at. |
| 235 | func ApplicationCreateFailed(tracker *FlowTracker, err error) Event { |
| 236 | return Event{EventApplicationCreateFailed, map[string]any{ |
| 237 | "step": tracker.Step(), |
| 238 | "duration_ms": tracker.DurationMS(), |
| 239 | "error_class": ErrorClass(err), |
| 240 | }} |
| 241 | } |
| 242 | |
| 243 | // ApplicationPlanChangeStarted is emitted when the plan change flow begins |
| 244 | // (dry runs are not tracked). |
no test coverage detected