Remove unused AssistantThreadFeedback event (#27021)

It looks like:

- https://github.com/zed-industries/zed/pull/26780

accidentally added a new event type, `AssistantThreadFeedback`, using
the old event system, that it didn't end up actually using, as the code
actually relies on using the newer (preferred) `telemetry::event!()`.

Release Notes:

- N/A
This commit is contained in:
Joseph T. Lyons 2025-03-18 16:39:54 -04:00 committed by GitHub
parent 674c572a28
commit ed510b5e93
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 25 deletions

View file

@ -660,10 +660,6 @@ fn for_snowflake(
e.event_type.clone(),
serde_json::to_value(&e.event_properties).unwrap(),
),
Event::AssistantThreadFeedback(e) => (
"Assistant Feedback".to_string(),
serde_json::to_value(&e).unwrap(),
),
};
if let serde_json::Value::Object(ref mut map) = event_properties {