We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a19820 commit 628a6d6Copy full SHA for 628a6d6
migrations/20231215122000_node_models.py
@@ -71,8 +71,8 @@ def upgrade(db: "pymongo.database.Database"):
71
'path': regression.get('path'),
72
'kind': 'regression',
73
'data': {
74
- 'pass_node': ObjectId(regression['regression_data'][0]),
75
- 'fail_node': ObjectId(regression['regression_data'][1])
+ 'pass_node': ObjectId(regression['regression_data'][0]['_id']),
+ 'fail_node': ObjectId(regression['regression_data'][1]['_id'])
76
},
77
'artifacts': regression.get('artifacts'),
78
'created': regression.get('created'),
0 commit comments