Skip to content

Commit

Permalink
updated blob storage tech debt comment
Browse files Browse the repository at this point in the history
  • Loading branch information
rasswanth-s committed Nov 29, 2023
1 parent 265ecd5 commit 3774451
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/syft/src/syft/service/action/action_object.py
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,8 @@ def reload_cache(self):
message=f"Failed to retrieve object from blob storage: {blob_retrieval_object.message}"
)

elif isinstance(blob_retrieval_object, (BlobRetrieval)):
elif isinstance(blob_retrieval_object, BlobRetrieval):
# TODO: This change is temporary to for gateway to be compatible with the new blob storage
self.syft_action_data_cache = blob_retrieval_object.read()
self.syft_action_data_type = type(self.syft_action_data)
else:
Expand Down

0 comments on commit 3774451

Please sign in to comment.