Skip to content

Commit

Permalink
[ISSUE #2281]🚀BrokerStatsManager and ColdDataCgCtrService add start m…
Browse files Browse the repository at this point in the history
…ethod
  • Loading branch information
mxsm committed Jan 16, 2025
1 parent a3e692a commit ddeb110
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ pub const NO_SUSPEND_KEY: &str = "_noSuspend_";
pub struct ColdDataPullRequestHoldService {}

impl ColdDataPullRequestHoldService {
pub fn start(&mut self) {
warn!("ColdDataPullRequestHoldService started not implemented");
}

Check warning on line 26 in rocketmq-broker/src/coldctr/cold_data_pull_request_hold_service.rs

View check run for this annotation

Codecov / codecov/patch

rocketmq-broker/src/coldctr/cold_data_pull_request_hold_service.rs#L24-L26

Added lines #L24 - L26 were not covered by tests
pub fn shutdown(&mut self) {
warn!("ColdDataPullRequestHoldService shutdown not implemented");
}
Expand Down
4 changes: 4 additions & 0 deletions rocketmq-broker/src/processor/notification_processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ use tracing::warn;
pub struct NotificationProcessor {}

impl NotificationProcessor {
pub fn start(&mut self) {
warn!("NotificationProcessor started unimplemented, need to implement it");
}

Check warning on line 27 in rocketmq-broker/src/processor/notification_processor.rs

View check run for this annotation

Codecov / codecov/patch

rocketmq-broker/src/processor/notification_processor.rs#L25-L27

Added lines #L25 - L27 were not covered by tests

fn process_request(
&self,
_ctx: ConnectionHandlerContext,
Expand Down

0 comments on commit ddeb110

Please # to comment.