Skip to content

Commit

Permalink
Merge pull request #8963 from OpenMined/fix-id-get
Browse files Browse the repository at this point in the history
fix mongo get by id
  • Loading branch information
koenvanderveen committed Jun 24, 2024
2 parents b913afb + 527073c commit 4e3e67b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/syft/src/syft/service/output/output_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ def has_output_read_permissions(
# Check if all output ActionObjects have permissions
result_ids = output.output_id_list
permissions = [
ActionObjectREAD(uid=_id, credentials=user_verify_key)
ActionObjectREAD(uid=_id.id, credentials=user_verify_key)
for _id in result_ids
]
if action_service.store.has_permissions(permissions):
Expand Down

0 comments on commit 4e3e67b

Please sign in to comment.