We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 620e2b6 commit dca443fCopy full SHA for dca443f
activestorage/storage.py
@@ -27,6 +27,8 @@ def reduce_chunk(rfile,
27
"""
28
29
#FIXME: for the moment, open the file every time ... we might want to do that, or not
30
+ obj_type = type(rfile)
31
+ print(f"Reducing chunk of object {obj_type}")
32
with open(rfile,'rb') as open_file:
33
# get the data
34
chunk = read_block(open_file, offset, size)
0 commit comments