Skip to content

Commit

Permalink
add rejected status
Browse files Browse the repository at this point in the history
  • Loading branch information
taylordowns2000 committed Mar 29, 2024
1 parent 21f54cf commit 9f1761d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docs/monitor-history/status-codes.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ Every Run has a status which indicates whether it completed successfully.

| Status | Chip | Type | Abort Run?\* | Description |
| :-------- | :--: | :------------: | :----------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Pending || | No | The run is waiting for an available worker to begin execution |
| Running | 🔵 | | No | The run is still in progress |
| Success | 🟢 | | No | Either all the steps in this run succeeded _or_ every error was properly handled. Technically, a run is successful if the final step in each branch (the leaf node) succeeds |
| Pending || | - | The run is waiting for an available worker to begin execution |
| Running | 🔵 | | - | The run is still in progress |
| Success | 🟢 | | - | Either all the steps in this run succeeded _or_ every error was properly handled. Technically, a run is successful if the final step in each branch (the leaf node) succeeds |
| Failed | 🔴 | JobError | No | A request failed with status code 404 |
| Failed | 🔴 | TypeError | No | Try to reference `state.data.patient.age` when `state.data.patient` is `undefined` |
| Failed | 🔴 | RangeError | No | Calling `state.patients[5]` when only 2 patients exist |
Expand All @@ -40,6 +40,7 @@ Every Run has a status which indicates whether it completed successfully.
| Killed | 🟡 | TimeoutError | Yes | Took longer than the maximum runtime allowed by the Lightning instance |
| Exception || | Yes | An error occurred that we didn't expect (the instance superuser has been notified) |
| Lost || | Yes | Lightning lost communication with the worker (the instance superuser has been notified) |
| Rejected || | - | The instance administrator won't process this run request because your project has reached its run limit |

### \*Note on error handling within a workflow

Expand Down

0 comments on commit 9f1761d

Please sign in to comment.