Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
madsbk committed Feb 3, 2021
1 parent 0e35b49 commit dabaea3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions distributed/comm/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def _to_frames():
msg_size = 0

if is_msgpack_serializable(msg):
print("to_frames() SIMPLE: ", repr(msg))
#print("to_frames() SIMPLE: ", repr(msg))
if context and "compression" in context:
compress_opts = {"compression": context["compression"]}
else:
Expand All @@ -121,7 +121,7 @@ def _to_frames():
)
else:
pass
print("to_frames() NON-SIMPLE: ", repr(msg))
#print("to_frames() NON-SIMPLE: ", repr(msg))

if allow_offload and OFFLOAD_THRESHOLD and msg_size > OFFLOAD_THRESHOLD:
return await offload(_to_frames)
Expand Down

0 comments on commit dabaea3

Please sign in to comment.