cos上传文件报错:ConnectionResetError: [WinError 10054] 远程主机强迫关闭了一个现有的连接。

2022-08-19 16:34:37 浏览数 (1)

python方法调用cos api向cos上传文件时,报错:ConnectionResetError: [WinError 10054] 远程主机强迫关闭了一个现有的连接。

导致文件上传失败

代码:

代码语言:javascript复制
#将升级包上传至cos中
logging.basicConfig(level=logging.INFO, stream=sys.stdout)
secret_id = ''   # 替换为用户的 SecretId
secret_key = ''   # 替换为用户的 SecretKey
region = region  # 替换为用户的 region

token = None  # 如果使用永久密钥不需要填入token,如果使用临时密钥需要填入
scheme = 'https'  # 指定使用 http/https 协议来访问 COS,默认为 https,可不填

config = CosConfig(Region=region, SecretId=secret_id, SecretKey=secret_key, Token=token, Scheme=scheme)
client = CosS3Client(config)
for i in range(5):
    try:
        response = client.put_object_from_local_file(
            Bucket=bucket,
            LocalFilePath=upgrade_app_name,   #本地上传文件名称
            Key=key,
        )
    except ConnectionResetError:
        print('ConnectionResetError')
        continue

报错:

0 人点赞