Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zwang28 committed Oct 12, 2024
1 parent cfb1b6c commit 30af935
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/meta/src/stream/stream_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -930,6 +930,13 @@ mod tests {
) -> std::result::Result<Response<WaitEpochCommitResponse>, Status> {
Ok(Response::new(WaitEpochCommitResponse::default()))
}

async fn get_min_uncommitted_sst_id(
&self,
_request: Request<GetMinUncommittedSstIdRequest>,
) -> Result<Response<GetMinUncommittedSstIdResponse>, Status> {
Ok(Response::new(GetMinUncommittedSstIdResponse::default()))
}
}

struct MockServices {
Expand Down

0 comments on commit 30af935

Please sign in to comment.