Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

debug: Add debug data DONOTMERGE #467

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion api/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from beanie import init_beanie
from fastapi_pagination.ext.motor import paginate
from motor import motor_asyncio
from kernelci.api.models import Hierarchy, Node, parse_node_obj

Check failure on line 13 in api/db.py

View workflow job for this annotation

GitHub Actions / Lint

Unable to import 'kernelci.api.models'
from .models import User, UserGroup


Expand Down Expand Up @@ -164,11 +164,16 @@

async def _create_recursively(self, hierarchy: Hierarchy, parent: Node,
cls, col):
# print out Node object and its full dict
node = hierarchy.node
node_debug = node.dict(by_alias=True)
print(f"_create_recursively node: {node_debug}")
obj = parse_node_obj(hierarchy.node)
print(f"_create_recursively full dict: {obj.dict(by_alias=True)}")
if parent:
obj.parent = parent.id
if obj.id:
obj.update()
obj.update()

Check warning on line 176 in api/db.py

View workflow job for this annotation

GitHub Actions / Lint

Trailing whitespace

Check warning on line 176 in api/db.py

View workflow job for this annotation

GitHub Actions / Lint

trailing whitespace
res = await col.replace_one(
{'_id': ObjectId(obj.id)}, obj.dict(by_alias=True)
)
Expand Down
Loading