We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96ef239 commit 052c6deCopy full SHA for 052c6de
server/src/catalog.rs
@@ -284,15 +284,15 @@ pub async fn get_first_event(
284
let dates_bytes = Bytes::from(serde_json::to_vec(&dates).unwrap());
285
// delete the stream
286
287
- let inegstor_first_event_at =
+ let ingestor_first_event_at =
288
handlers::http::cluster::send_retention_cleanup_request(
289
&url,
290
ingestor.clone(),
291
dates_bytes,
292
)
293
.await?;
294
- if !inegstor_first_event_at.is_empty() {
295
- ingestors_first_event_at.push(inegstor_first_event_at);
+ if !ingestor_first_event_at.is_empty() {
+ ingestors_first_event_at.push(ingestor_first_event_at);
296
}
297
298
if ingestors_first_event_at.is_empty() {
0 commit comments