diff --git a/kernelci/api/helper.py b/kernelci/api/helper.py index d6d6cb96f9..33b417c580 100644 --- a/kernelci/api/helper.py +++ b/kernelci/api/helper.py @@ -538,6 +538,7 @@ def submit_results(self, results, root): root_node['result'] = results['node']['result'] root_node['artifacts'].update(results['node']['artifacts']) root_node['data'].update(results['node'].get('data', {})) + root_node['processed_by_kcidb_bridge'] = False if root_node['result'] != 'incomplete': data = root_node.get('data', {}) if data.get('error_code') == 'node_timeout': @@ -562,6 +563,7 @@ def submit_results(self, results, root): }, 'group': root['name'], 'state': 'done', + 'processed_by_kcidb_bridge': False, } data = self._prepare_results(root_results, parent, base) # Once this has been consolidated at the API level: