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());