Commit dd97026
committed
fix: render component IDs as plain ints in alert email summaries
Previously, component IDs in alert summaries were shown as `numpy.int64`
objects, which rendered in emails like:
Components: [np.int64(1122), np.int64(1123), ...]
This commit ensures component IDs are converted to plain Python ints
during aggregation, so they display cleanly as:
Components: [1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130]
This improves readability and avoids confusion for users receiving
alert emails.
Signed-off-by: cyiallou - Costas <[email protected]>1 parent 4e188ff commit dd97026
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
303 | 303 | | |
304 | 304 | | |
305 | 305 | | |
306 | | - | |
| 306 | + | |
307 | 307 | | |
308 | 308 | | |
309 | 309 | | |
| |||
0 commit comments