deprecated function

This commit is contained in:
Bryan Stitt 2022-11-12 09:25:14 +00:00
parent 0e1cf5767c
commit b17894c2d6

View File

@ -172,7 +172,7 @@ impl ProxyResponseAggregate {
period_timestamp: u64,
) -> Result<(), DbErr> {
// this is a lot of variables
let period_datetime = Utc.timestamp(period_timestamp as i64, 0);
let period_datetime = Utc.timestamp_opt(period_timestamp as i64, 0).unwrap();
let request_bytes = &self.histograms.request_bytes;