RockteMQ-AI commented on issue #1469: URL: https://github.com/apache/rocketmq-dashboard/issues/1469#issuecomment-5240695888
**Issue Evaluation** Category: `bug` | Status: **Confirmed** Valid bug. `SettingsService` uses `String.toLowerCase()` without specifying `Locale.ROOT`, causing Turkish-locale hosts to corrupt identifiers like `MIMIR` → `mımır` and `Basic Auth` → `basıc auth`. **Root Cause:** Locale-sensitive string normalization in `SettingsService`. **Impact:** Metrics data-source connections fail on Turkish-locale JVMs. **Severity:** medium Fix: use `toLowerCase(Locale.ROOT)` / `valueOf()` with explicit locale. --- *Automated evaluation by RockteMQ-AI* -- 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]
