fix: correct time range buckets

Turns out there are 60 seconds in a minute, not 3,600.
pull/24376/head
Dom Dwyer 2023-05-16 17:46:20 +02:00
parent 522b1fca4f
commit 0a31afd00d
No known key found for this signature in database
GPG Key ID: E4C40DBD9157879A
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ use metric::{
use super::completion_observer::{CompletedPersist, PersistCompletionObserver};
const MINUTES: Duration = Duration::from_secs(60 * 60);
const MINUTES: Duration = Duration::from_secs(60);
#[derive(Debug)]
pub(crate) struct ParquetFileInstrumentation<T> {