-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
feat(flags): Update issues search box to search for feature flags #83639
base: master
Are you sure you want to change the base?
Conversation
❌ 16 Tests Failed:
View the top 3 failed tests by shortest run time
To view more test analytics, go to the Test Analytics Dashboard |
🚨 Warning: This pull request contains Frontend and Backend changes! It's discouraged to make changes to Sentry's Frontend and Backend in a single pull request. The Frontend and Backend are not atomically deployed. If the changes are interdependent of each other, they must be separated into two pull requests and be made forward or backwards compatible, such that the Backend or Frontend can be safely deployed independently. Have questions? Please ask in the |
When a tags query is provided implicitly query feature flags as well.
This is temporary, proof-of-concept code. Contents subject to change :)
Only
src/sentry/search/snuba/executors.py
works. The code inbase.py
apparently doesn't. Not sure if its a testing failure on my part.Primary goal is to make the search box work which is what
executors.py
seems to have done. Need to figure out what supplementary files need to be modified (there may be other endpoints the UI relies on to drive product experience and the flag conditions should probably be represented there).Leander's advice:
executors.py
wasn't suggested. I found it by tracing the code. Not sure if that's right.I'm relying on the entity in
executors.py
but that field is nullable which means I could miss valid queries. Is there a location where I know with certainty I'm making an errors query and can rewrite conditions?