Skip to content

Commit

Permalink
[ci] fix blocker counting (ray-project#47623)
Browse files Browse the repository at this point in the history
we changed it to a normal list now

Signed-off-by: Lonnie Liu <lonnie@anyscale.com>
Signed-off-by: ujjawal-khare <ujjawal.khare@dream11.com>
  • Loading branch information
aslonnie authored and ujjawal-khare committed Oct 15, 2024
1 parent f66b845 commit 51f804e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/ray_ci/automation/weekly_green_metric.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def main(production: bool, check: bool) -> None:
blockers = TestStateMachine.get_release_blockers()

if production:
logger.info(f"Found {blockers.totalCount} release blockers")
logger.info(f"Found {len(blockers)} release blockers")
blocker_teams = [
TestStateMachine.get_issue_owner(blocker) for blocker in blockers
]
Expand Down

0 comments on commit 51f804e

Please sign in to comment.