Skip to content

Commit

Permalink
Change default value of //flags:ovs command-line flag
Browse files Browse the repository at this point in the history
- 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 <[email protected]>
  • Loading branch information
ffoulkes committed Apr 14, 2024
1 parent 3943544 commit c9c7f22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flags/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit c9c7f22

Please sign in to comment.