Skip to content

Commit 4f7cd25

Browse files
committed
chore(ci): Fix previously unknown issue in windowing_aggregations
1 parent cb8c57d commit 4f7cd25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/windowing_aggregations.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ fn main() -> Result<()> {
3434
&pipeline,
3535
sensor_data
3636
.iter()
37-
.map(|(sensor, ts, temp)| (sensor.to_string(), Timestamped::new(*ts, *temp)))
37+
.map(|(sensor, ts, temp)| ((*sensor).to_string(), Timestamped::new(*ts, *temp)))
3838
.collect::<Vec<_>>(),
3939
);
4040

0 commit comments

Comments
 (0)