-
Notifications
You must be signed in to change notification settings - Fork 563
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix state not populating in operator #5115
Conversation
WalkthroughThe changes in this pull request primarily enhance operator execution and context management within the Changes
Possibly related PRs
Suggested labels
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: .coderabbit.yaml 📒 Files selected for processing (1)
🧰 Additional context used📓 Path-based instructions (1)app/packages/operators/src/operators.ts (1)Pattern 🔇 Additional comments (1)app/packages/operators/src/operators.ts (1)
The Run the following script to confirm that the server code handles Also applies to: 834-834, 911-911, 945-945 ✅ Verification successfulLet me gather more specific information about the server-side handling. Based on the findings, I can now provide a final response:
The parameter is integrated into FiftyOne's configuration system with proper server-side support:
🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Search for server-side handling of 'query_performance' in API endpoints.
# Test: Find occurrences where 'query_performance' is processed server-side.
rg -F 'query_performance'
Length of output: 3267 Script: #!/bin/bash
# Search for query_performance parameter handling in server code
ast-grep --pattern 'def $_(self, $$$, query_performance, $$$):'
# Look for the actual processing of query_performance in the query execution
rg -A 5 'query_performance.*=' fiftyone/server/query.py
Length of output: 123 Script: #!/bin/bash
# Look for query_performance configuration and handling in server code
rg -A 10 'class.*Config' fiftyone/core/config.py
# Check how query_performance is used in the server query execution
rg -A 10 'class.*Query' fiftyone/server/query.py
# Look for any validation or processing of query_performance
rg -B 2 -A 5 'query_performance' fiftyone/server/query.py
Length of output: 7398 Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
What changes are proposed in this pull request?
fix state not populating in operator
How is this patch tested? If it is not, please explain why.
Release Notes
Is this a user-facing change that should be mentioned in the release notes?
notes for FiftyOne users.
What areas of FiftyOne does this PR affect?
fiftyone
Python library changesSummary by CodeRabbit
New Features
Bug Fixes