Aias00 opened a new issue, #1093: URL: https://github.com/apache/rocketmq-dashboard/issues/1093
## Problem The Consumer Group Management page exposes an auto-refresh switch that only changes local state, so it never refreshes the list. Its initial and manual list requests also have no shared request ownership, allowing an older response to overwrite a newer refresh. ## Scope Track 1 / Consumer Management. ## Proposed fix Introduce a single list refresh coordinator that owns loading and result updates, poll only while auto refresh is enabled, clean up on disable/unmount, and ignore obsolete list responses. ## Evidence `web/src/pages/studio/GroupManagement.tsx`: the Switch at lines 285-290 only calls `setAutoRefresh`; the initial effect and `handleRefresh` independently update `groups`. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
