Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[ISSUE #1925] Implement DefaultMQAdminExt#setMessageRequestMode #1926

Merged
merged 1 commit into from
Dec 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion rocketmq-tools/src/admin/default_mq_admin_ext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,16 @@
pop_work_group_size: i32,
timeout_millis: u64,
) -> crate::Result<()> {
todo!()
self.default_mqadmin_ext_impl
.set_message_request_mode(
broker_addr,
topic,
consumer_group,
mode,
pop_work_group_size,
timeout_millis,
)
.await

Check warning on line 538 in rocketmq-tools/src/admin/default_mq_admin_ext.rs

View check run for this annotation

Codecov / codecov/patch

rocketmq-tools/src/admin/default_mq_admin_ext.rs#L529-L538

Added lines #L529 - L538 were not covered by tests
}

async fn reset_offset_by_queue_id(
Expand Down
Loading