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 14:42:19 +00:00
committed by GitHub
co-authored by Thorsten
parent fb272c0edc
commit aa0eaea4e9
+3 -1
View File
@@ -205,6 +205,8 @@ impl Zeta {
}
fn push_event(&mut self, event: Event) {
const MAX_EVENT_COUNT: usize = 20;
if let Some(Event::BufferChange {
new_snapshot: last_new_snapshot,
timestamp: last_timestamp,
@@ -229,7 +231,7 @@ impl Zeta {
}
self.events.push_back(event);
if self.events.len() > 10 {
if self.events.len() > MAX_EVENT_COUNT {
self.events.pop_front();
}
}