We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b46d3f commit df9a5f7Copy full SHA for df9a5f7
1 file changed
backend/kernelCI_app/helpers/treeDetailsRollup.py
@@ -33,7 +33,8 @@ def normalize_build_dict(row_dict: dict) -> dict:
33
"build_config_name": UNKNOWN_STRING,
34
}
35
for key, default in defaults.items():
36
- row_dict.setdefault(key, default)
+ if row_dict.get(key) is None:
37
+ row_dict[key] = default
38
39
if row_dict.get("issue_id") is None and is_status_failure(
40
row_dict["build_status"], build_fail_status_list
0 commit comments