From c9c7f2202153d43ebf255bd9dc40228a92c84ac7 Mon Sep 17 00:00:00 2001 From: Derek G Foster Date: Sun, 14 Apr 2024 16:07:30 -0700 Subject: [PATCH] Change default value of //flags:ovs command-line flag - Changed the default for `--//flags:ovs` to `False`, for parity with the standalone cmake build. This is a temporary workaround for a failure in the `switchlink_link` unit test. Signed-off-by: Derek G Foster --- flags/BUILD.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flags/BUILD.bazel b/flags/BUILD.bazel index 6679942..ac0ea04 100644 --- a/flags/BUILD.bazel +++ b/flags/BUILD.bazel @@ -10,7 +10,7 @@ load("@bazel_skylib//rules:common_settings.bzl", "bool_flag") # Define "--//flags:ovs" command-line flag bool_flag( name = "ovs", - build_setting_default = True, + build_setting_default = False, ) # Enabled by "--//flags:ovs=true"