Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zwang28 committed Oct 8, 2024
1 parent 470216a commit 1003f2d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/storage/hummock_test/src/sync_point_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ pub async fn compact_once(
compact_task.compaction_filter_mask = compaction_filter_flag.bits();
// 3. compact
let (_tx, rx) = tokio::sync::oneshot::channel();
let ((result_task, task_stats), _) = compact(
let ((result_task, task_stats, object_timestamps), _) = compact(
compact_ctx,
compact_task.clone(),
rx,
Expand All @@ -216,6 +216,7 @@ pub async fn compact_once(
result_task.task_status,
result_task.sorted_output_ssts,
Some(to_prost_table_stats_map(task_stats)),
object_timestamps,
)
.await
.unwrap();
Expand Down

0 comments on commit 1003f2d

Please sign in to comment.