Skip to content

Commit

Permalink
Fix flag aggregation (#1229)
Browse files Browse the repository at this point in the history
  • Loading branch information
fweikert authored Sep 24, 2021
1 parent 9e4094c commit 809b0b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildkite/aggregate_incompatible_flags_test_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ def handle_already_flipped_flags(failed_jobs_per_flag, details_per_flag):
details_for_new_flags = {}

for flag, details in details_per_flag.items():
if details.bazel_version < current_major_version:
if not details.bazel_version or details.bazel_version < current_major_version:
# TOOD(fweikert): maybe display a Buildkite annotation
bazelci.eprint(
"Ignoring {} since it has already been flipped in Bazel {} (latest is {}).".format(
Expand Down

0 comments on commit 809b0b7

Please sign in to comment.