[bugfix](profile) not output some variables correctly (#22537)

This commit is contained in:
yiguolei
2023-08-03 13:17:02 +08:00
committed by GitHub
parent e670d84b72
commit 85a95e206e

View File

@ -155,6 +155,10 @@ public class SummaryProfile {
for (String key : infos.keySet()) {
if (SUMMARY_KEYS.contains(key)) {
summaryProfile.addInfoString(key, infos.get(key));
} else if (EXECUTION_SUMMARY_KEYS.contains(key)) {
// Some static value is build in summary profile, should add
// them to execution summary profile during update.
executionSummaryProfile.addInfoString(key, infos.get(key));
}
}
}