Double max event count for zeta (#22772)

Release Notes:

- N/A

Co-authored-by: Thorsten <thorsten@zed.dev>
This commit is contained in:
Antonio Scandurra 2025-01-07 15:42:19 +01:00 committed by GitHub
parent fb272c0edc
commit aa0eaea4e9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -205,6 +205,8 @@ impl Zeta {
} }
fn push_event(&mut self, event: Event) { fn push_event(&mut self, event: Event) {
const MAX_EVENT_COUNT: usize = 20;
if let Some(Event::BufferChange { if let Some(Event::BufferChange {
new_snapshot: last_new_snapshot, new_snapshot: last_new_snapshot,
timestamp: last_timestamp, timestamp: last_timestamp,
@ -229,7 +231,7 @@ impl Zeta {
} }
self.events.push_back(event); self.events.push_back(event);
if self.events.len() > 10 { if self.events.len() > MAX_EVENT_COUNT {
self.events.pop_front(); self.events.pop_front();
} }
} }