fix(pixel-agent-teams): validate count range in roles_for resolution - #5734
Open
Vishaaallll wants to merge 1 commit into
Open
Vishaaallll wants to merge 1 commit into
Vishaaallll wants to merge 1 commit into
Conversation
Signed-off-by: Vishaaallll <Vishaaallll@users.noreply.github.com>
This was referenced Sep 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why this matters
In
ods/extensions/services/dashboard-api/pixel_agent_teams.py,roles_for(count)looks upcountin a dictionary mapping1..6directly without parameter type checking. When invoked with out-of-range integers or types such asTrue(which Python resolves as key1), the function either silently behaves incorrectly or raises an unhandledKeyErrorinstead of a standardValueError.This surgical fix validates that
countis strictly anint(not a boolean) between 1 and 6, raisingValueErroron invalid values.Validation
roles_for(0)androles_for(True)causedKeyErroror unexpected single-builder resolution.ValueError("count must be an integer between 1 and 6").pixel-teams suite: 2 passed. New-test syntax and diff checks pass; new regression wired into Linux CI.Overlap check
Inspected open/closed PRs. PR #5722 addressed multibyte UTF-8 SSE decoding in pixel-teams; zero overlap with team role resolution.
Risk / AI disclosure
AI-assisted investigation, patch, and regression tests. Adds strict argument verification to internal helper. Independent review remains a gate.
Follow-up integration evidence
Composed locally with public-beta at
4fa6ad170without conflicts. CI and unit checks pass.