Skip to content

Commit

Permalink
Hash block names while importing binary encodings
Browse files Browse the repository at this point in the history
  • Loading branch information
hardbyte committed Mar 22, 2021
1 parent 61ecd6c commit 42a9fd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/entityservice/tasks/encoding_uploading.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def encoding_iterator(encoding_stream):
yield (
str(encoding_id),
binary_formatter.pack(encoding_id, encoding_stream.read(size)),
encoding_to_block_map[str(encoding_id)]
map(hash_block_name, encoding_to_block_map[str(encoding_id)])
)

if object_name.endswith('.json'):
Expand Down

0 comments on commit 42a9fd2

Please sign in to comment.