Skip to content

Commit

Permalink
Fix sidecar and PSC build
Browse files Browse the repository at this point in the history
  • Loading branch information
mkeeter committed Nov 20, 2024
1 parent e43e2fa commit 4c7a97f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion task/control-plane-agent/src/mgs_psc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -649,6 +649,6 @@ impl SpHandler for MgsHandler {
seq: u32,
buf: &mut [u8],
) -> Result<Option<DumpSegment>, SpError> {
self.common.task_dump_read_continue(key, buf)
self.common.task_dump_read_continue(key, seq, buf)
}
}
2 changes: 1 addition & 1 deletion task/control-plane-agent/src/mgs_sidecar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1146,7 +1146,7 @@ impl SpHandler for MgsHandler {
seq: u32,
buf: &mut [u8],
) -> Result<Option<DumpSegment>, SpError> {
self.common.task_dump_read_continue(key, buf)
self.common.task_dump_read_continue(key, seq, buf)
}
}

Expand Down

0 comments on commit 4c7a97f

Please sign in to comment.