Skip to content

Commit

Permalink
fix(send_kcidb.py): Send full config name to KCIDB
Browse files Browse the repository at this point in the history
KCIDB need to be able to see full config name, not just
defconfig.

Signed-off-by: Denys Fedoryshchenko <denys.f@collabora.com>
  • Loading branch information
nuclearcat authored and pawiecz committed Feb 25, 2025
1 parent 8cde7b8 commit 97bbc11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/send_kcidb.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def _parse_build_node(self, origin, node):
'start_time': self._set_timezone(node['created']),
'architecture': node['data'].get('arch'),
'compiler': node['data'].get('compiler'),
'config_name': node['data'].get('defconfig'),
'config_name': node['data'].get('config_full'),
'valid': valid,
'misc': {
'platform': node['data'].get('platform'),
Expand Down

0 comments on commit 97bbc11

Please sign in to comment.