| Index: common/proto/milo/annotations.proto
|
| diff --git a/common/proto/milo/annotations.proto b/common/proto/milo/annotations.proto
|
| index 12100530db1c77fd5b17d82915b9ee6312ecd153..76efd5460792b4316df8416fb6884d98bd85a5d8 100644
|
| --- a/common/proto/milo/annotations.proto
|
| +++ b/common/proto/milo/annotations.proto
|
| @@ -16,6 +16,8 @@ enum Status {
|
| SUCCESS = 1;
|
| // The step has finished unsuccessfully.
|
| FAILURE = 2;
|
| + // The step has been scheduled, but not yet started.
|
| + PENDING = 3;
|
| }
|
|
|
| // FailureType provides more details on the nature of the Status.
|
| @@ -33,6 +35,8 @@ message FailureDetails {
|
| // used if a Step's external depdendency fails and the Step cannot recover
|
| // or proceed without it.
|
| DM_DEPENDENCY_FAILED = 3;
|
| + // The step was cancelled.
|
| + CANCELLED = 4;
|
| }
|
| Type type = 1;
|
|
|
|
|