Skip to content

Commit

Permalink
fix(packages/syft/src/syft/service/action/action_service.py): context…
Browse files Browse the repository at this point in the history
….server.blob_storage doesn't exist. Fix the path to context.server.services.blob_storage

This solves the issue when trying to store a huge blob in blob storage
  • Loading branch information
IonesioJunior committed Oct 1, 2024
1 parent 4226ac2 commit 81b59d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/syft/src/syft/service/action/action_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ def blob_permission(

if result_blob_id is not None:
blob_permissions = [blob_permission(x) for x in output_readers]
context.server.blob_storage.stash.add_permissions(blob_permissions)
context.server.services.blob_storage.stash.add_permissions(blob_permissions)

return set_result

Expand Down

0 comments on commit 81b59d5

Please sign in to comment.