Skip to content

Commit

Permalink
Remove unnecessary prints
Browse files Browse the repository at this point in the history
  • Loading branch information
HamadaSalhab committed Oct 14, 2024
1 parent 2217006 commit f577137
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions agents-api/agents_api/worker/codec.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@ def serialize(x: Any) -> bytes:
data_size = sys.getsizeof(data)

if use_blob_store_for_temporal and data_size > blob_store_cutoff_kb * 1024:
print("-" * 100)
print("YAYAYAYA: Using blob store for temporal")
print("-" * 100)

key = s3.add_object_with_hash(data)
return serialize(RemoteObject(key=key))
Expand Down

0 comments on commit f577137

Please sign in to comment.