From 2d01b3f8aac8bd374ceca4d56a242db24bbc2caa Mon Sep 17 00:00:00 2001 From: Ingrid Date: Fri, 6 Dec 2024 10:31:30 +0100 Subject: [PATCH] remove unnecessary comment --- rove_connector/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/rove_connector/src/lib.rs b/rove_connector/src/lib.rs index 8ecf13dd..e9099f29 100644 --- a/rove_connector/src/lib.rs +++ b/rove_connector/src/lib.rs @@ -50,8 +50,6 @@ fn extract_time_spec( // less of a priority now let start_time = Utc.timestamp_opt(time_spec.timerange.start.0, 0).unwrap() - (time_spec.time_resolution * num_leading_points.into()); - // TODO: figure out whether the range in postgres is inclusive on the range here or - // we need to add 1 second let end_time = Utc.timestamp_opt(time_spec.timerange.end.0, 0).unwrap() + (time_spec.time_resolution * num_trailing_points.into());