Skip to content

Commit

Permalink
Remove unnecessary arguments from the action_service.set method
Browse files Browse the repository at this point in the history
  • Loading branch information
itstauq committed Jul 5, 2024
1 parent 6979278 commit 81f9600
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/syft/src/syft/service/enclave/enclave_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,7 @@ def upload_assets(
pending_assets_for_uploading_domain = set(kwargs_for_uploading_domain.values())
for action_object in action_objects:
result = action_service.set(
root_context,
action_object,
ignore_detached_objs=True,
skip_save_to_blob_store=True, # TODO find out why this is needed in the latest dev version
# skip_clear_cache=True,
root_context, action_object, ignore_detached_objs=True
)
if isinstance(result, SyftError):
# TODO 🟣 Rollback previously uploaded assets if any error occurs
Expand Down

0 comments on commit 81f9600

Please sign in to comment.