Open idling11 opened 1 year ago
Hi, team, I find a bug in OSSFIle _upload_chunk function. self.loc = self.fs.append_object(self.path, self.loc, self.buffer.getvalue()) we should pass self.offset instead of self.loc to append_object function.
self.loc = self.fs.append_object(self.path, self.loc, self.buffer.getvalue())
I have make a pr for this bug. pls review if you have time https://github.com/idling11/ossfs/pull/new/fix_127
Hi, team, I find a bug in OSSFIle _upload_chunk function.
self.loc = self.fs.append_object(self.path, self.loc, self.buffer.getvalue())
we should pass self.offset instead of self.loc to append_object function.