Skip to content

Commit

Permalink
[ISSUE #2279]🚀BrokerFastFailure and BrokerPreOnlineService add start …
Browse files Browse the repository at this point in the history
…method
  • Loading branch information
mxsm committed Jan 16, 2025
1 parent 1c3b29c commit fa6f6a0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions rocketmq-broker/src/broker/broker_pre_online_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ use tracing::warn;
pub struct BrokerPreOnlineService;

impl BrokerPreOnlineService {

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

Check warning on line 25 in rocketmq-broker/src/broker/broker_pre_online_service.rs

View check run for this annotation

Codecov / codecov/patch

rocketmq-broker/src/broker/broker_pre_online_service.rs#L23-L25

Added lines #L23 - L25 were not covered by tests

pub fn shutdown(&mut self) {
warn!("BrokerPreOnlineService shutdown not implemented");
}
Expand Down
5 changes: 5 additions & 0 deletions rocketmq-broker/src/latency/broker_fast_failure.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ use tracing::warn;
pub struct BrokerFastFailure;

impl BrokerFastFailure {

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

Check warning on line 25 in rocketmq-broker/src/latency/broker_fast_failure.rs

View check run for this annotation

Codecov / codecov/patch

rocketmq-broker/src/latency/broker_fast_failure.rs#L23-L25

Added lines #L23 - L25 were not covered by tests

pub fn shutdown(&mut self) {
warn!("BrokerFastFailure shutdown not implemented");
}
Expand Down

0 comments on commit fa6f6a0

Please sign in to comment.