Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit b054848

Browse files
committed
fix
1 parent e54fee2 commit b054848

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

databend_py/uploader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def _upload_to_presigned_url(self, presigned_url, headers, data):
9090
buf_size = len(buf)
9191
data_len = 1
9292
elif isinstance(data, list):
93-
buf = self._serialize_data(data, self._compress).encode('utf-8')
93+
buf = self._serialize_data(data, self._compress)
9494
buf_size = len(buf)
9595
data_len = len(data)
9696
else:

0 commit comments

Comments
 (0)