Skip to content

Commit 6d30214

Browse files
brentleyjonescopybara-github
authored andcommitted
Document --digest_function startup flag
This flag is in use in production today (e.g. when using `blake3`). Closes bazelbuild#20747. PiperOrigin-RevId: 597704594 Change-Id: I92b5cfc4bf70c86d50049c6881f7b5f4fb7d30be
1 parent a326bc3 commit 6d30214

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/main/java/com/google/devtools/build/lib/runtime/BlazeServerStartupOptions.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -402,18 +402,15 @@ public String getTypeDescription() {
402402
help = "The maximum amount of time the client waits to connect to the server")
403403
public int localStartupTimeoutSecs;
404404

405-
// TODO(b/109764197): Add OptionDocumentationCategory.BAZEL_CLIENT_OPTIONS & remove the
406-
// experimental tag once this has been tested and is ready for use.
407405
@Option(
408406
name = "digest_function",
409407
defaultValue = "null",
410408
converter = DigestHashFunction.DigestFunctionConverter.class,
411-
documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,
409+
documentationCategory = OptionDocumentationCategory.BAZEL_CLIENT_OPTIONS,
412410
effectTags = {
413411
OptionEffectTag.LOSES_INCREMENTAL_STATE,
414412
OptionEffectTag.BAZEL_INTERNAL_CONFIGURATION
415413
},
416-
metadataTags = OptionMetadataTag.EXPERIMENTAL,
417414
help = "The hash function to use when computing file digests.")
418415
public DigestHashFunction digestHashFunction;
419416

0 commit comments

Comments
 (0)