Skip to content

Commit

Permalink
Rename to flags
Browse files Browse the repository at this point in the history
  • Loading branch information
cmanallen committed Jan 22, 2025
1 parent 4477ba4 commit cdaa79c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sentry/search/snuba/executors.py
Original file line number Diff line number Diff line change
Expand Up @@ -1972,7 +1972,7 @@ def recursive_tag_replace(condition: Column | Function) -> bool:
if isinstance(condition, Column):
if condition.name.startswith("tags[") and condition.name.endswith("]"):
return Column(
name=f"features[{condition.name[5:-1]}]",
name=f"flags[{condition.name[5:-1]}]",
entity=condition.entity,
)
elif isinstance(condition, Function):
Expand Down

0 comments on commit cdaa79c

Please sign in to comment.