Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: common/proto/milo/annotations.proto

Issue 2191693003: Milo: Add LogDog annotation stream support. (Closed) Base URL: https://github.com/luci/luci-go@master
Patch Set: Rebarse Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/cmd/milo/swarming/expectations/build-unicode.json ('k') | common/proto/milo/annotations.pb.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « appengine/cmd/milo/swarming/expectations/build-unicode.json ('k') | common/proto/milo/annotations.pb.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698