Skip to content

Commit

Permalink
[ISSUE #8647] Fix the issue where lmq cannot update consumer offset (#…
Browse files Browse the repository at this point in the history
…8648)

* Fix the issue where lmq cannot update consumer offset

* Fix the issue where lmq cannot update consumer offset
  • Loading branch information
RongtongJin authored Sep 6, 2024
1 parent 97b318f commit 5496807
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,13 @@ public void updateSubscriptionGroupConfig(final SubscriptionGroupConfig config)
}
super.updateSubscriptionGroupConfig(config);
}

@Override
public boolean containsSubscriptionGroup(String group) {
if (MixAll.isLmq(group)) {
return true;
} else {
return super.containsSubscriptionGroup(group);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,13 @@ public void updateSubscriptionGroupConfig(final SubscriptionGroupConfig config)
}
super.updateSubscriptionGroupConfig(config);
}

@Override
public boolean containsSubscriptionGroup(String group) {
if (MixAll.isLmq(group)) {
return true;
} else {
return super.containsSubscriptionGroup(group);
}
}
}

0 comments on commit 5496807

Please sign in to comment.