From 50723bb9b606180d6a1bfda09ef1b8a0db467481 Mon Sep 17 00:00:00 2001 From: jhorvitz Date: Wed, 27 Jan 2021 09:43:31 -0800 Subject: [PATCH] Update documentation for `AbortReason.OUT_OF_MEMORY` now that it is in use. PiperOrigin-RevId: 354110740 --- .../build/lib/buildeventstream/proto/build_event_stream.proto | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto b/src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto index 674e5bf86a11af..080282158eadb0 100644 --- a/src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto +++ b/src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto @@ -295,9 +295,7 @@ message Aborted { // set to false causing the build be ended upon failure). INCOMPLETE = 10; - // The build tool ran out of memory and crashed. Not yet used. OOMs are - // currently reported as INTERNAL. - // TODO(b/170643206): Use this reason for OOMs after updating consumers. + // The build tool ran out of memory and crashed. OUT_OF_MEMORY = 11; } AbortReason reason = 1;