diff --git a/task/control-plane-agent/src/mgs_psc.rs b/task/control-plane-agent/src/mgs_psc.rs index eedd77798..db323cc17 100644 --- a/task/control-plane-agent/src/mgs_psc.rs +++ b/task/control-plane-agent/src/mgs_psc.rs @@ -649,6 +649,6 @@ impl SpHandler for MgsHandler { seq: u32, buf: &mut [u8], ) -> Result, SpError> { - self.common.task_dump_read_continue(key, buf) + self.common.task_dump_read_continue(key, seq, buf) } } diff --git a/task/control-plane-agent/src/mgs_sidecar.rs b/task/control-plane-agent/src/mgs_sidecar.rs index 7bd18a642..44957e605 100644 --- a/task/control-plane-agent/src/mgs_sidecar.rs +++ b/task/control-plane-agent/src/mgs_sidecar.rs @@ -1146,7 +1146,7 @@ impl SpHandler for MgsHandler { seq: u32, buf: &mut [u8], ) -> Result, SpError> { - self.common.task_dump_read_continue(key, buf) + self.common.task_dump_read_continue(key, seq, buf) } }