Feat: Accessing Alibaba Cloud OSS with Amazon S3 SDK (#5438)

Accessing Alibaba Cloud OSS with Amazon S3 SDK
This commit is contained in:
hy89
2025-02-27 17:02:42 +08:00
committed by GitHub
parent 11de7599e5
commit 651422127c
7 changed files with 188 additions and 0 deletions

View File

@ -70,6 +70,12 @@ def show_configs():
if "password" in v:
v = copy.deepcopy(v)
v["password"] = "*" * 8
if "access_key" in v:
v = copy.deepcopy(v)
v["access_key"] = "*" * 8
if "secret_key" in v:
v = copy.deepcopy(v)
v["secret_key"] = "*" * 8
msg += f"\n\t{k}: {v}"
logging.info(msg)