Merge remote-tracking branch 'origin/main' into fix/api-token-lock

This commit is contained in:
Yansong Zhang
2026-02-04 15:55:38 +08:00
111 changed files with 9677 additions and 3554 deletions

View File

@ -390,8 +390,7 @@ class ClickZettaVolumeStorage(BaseStorage):
"""
content = self.load_once(filename)
with Path(target_filepath).open("wb") as f:
f.write(content)
Path(target_filepath).write_bytes(content)
logger.debug("File %s downloaded from ClickZetta Volume to %s", filename, target_filepath)