From 0882effbc746c0a40cd21b9a8e06b2a060b32e1c Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Wed, 29 Mar 2023 07:03:30 -0700 Subject: [PATCH] Include --bes_upload_mode in docs Closes #17876. PiperOrigin-RevId: 520324506 Change-Id: I98125fc6fb095c13a8386245af91923b7bdf5905 --- .../lib/buildeventservice/BuildEventServiceOptions.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/google/devtools/build/lib/buildeventservice/BuildEventServiceOptions.java b/src/main/java/com/google/devtools/build/lib/buildeventservice/BuildEventServiceOptions.java index acc17877286f02..484d78511dfecc 100644 --- a/src/main/java/com/google/devtools/build/lib/buildeventservice/BuildEventServiceOptions.java +++ b/src/main/java/com/google/devtools/build/lib/buildeventservice/BuildEventServiceOptions.java @@ -134,11 +134,13 @@ public class BuildEventServiceOptions extends OptionsBase { name = "bes_upload_mode", defaultValue = "wait_for_upload_complete", converter = BesUploadModeConverter.class, - documentationCategory = OptionDocumentationCategory.UNDOCUMENTED, + documentationCategory = OptionDocumentationCategory.LOGGING, effectTags = {OptionEffectTag.EAGERNESS_TO_EXIT}, help = "Specifies whether the Build Event Service upload should block the build completion " - + "or should end the invocation immediately and finish the upload in the background.") + + "or should end the invocation immediately and finish the upload in the background. " + + "Either 'wait_for_upload_complete' (default), 'nowait_for_upload_complete', " + + "or 'fully_async'.") public BesUploadMode besUploadMode; @Option(