Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/sentry/similarity/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def _make_index_backend(cluster=None):
'message:message:character-shingles': MessageFeature(
lambda message: text_shingle(
5,
message.message,
message.formatted,
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"generally interfaces shouldn't change" / "just use the attribute and move on"

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also worth noting for future me that this doesn't really work the same way (interpolated messages will have higher cardinality going into the feature set, so probably cause more Redis issues) but I don't care enough to drag this out

),
),
},
Expand Down