btlqql opened a new issue, #2176:
URL: https://github.com/apache/rocketmq-dashboard/issues/2176
### What happened?
Tencent Cloud's `DescribeInstanceList` response is represented as an
`InstanceItem[]`. If a page contains a null record alongside valid instances,
the catalog loop dereferences the null item and aborts the entire page with a
`NullPointerException`.
### Expected behavior
Ignore malformed null records and continue mapping valid instances from the
same response page. This matches the defensive behavior already used by other
cloud catalog implementations and prevents one bad SDK entry from hiding the
remaining instances.
### Reproduction
Return a Tencent `DescribeInstanceListResponse` whose data is `{null,
validInstance}` and call the cloud instance listing endpoint. The current
implementation fails before returning the valid instance.
--
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]