aliyun / aliyun-oss-python-sdk

Aliyun OSS SDK for Python
MIT License
939 stars 363 forks source link

head_object 方法 HTTP 连接泄露 #308

Closed georgexsh closed 2 years ago

georgexsh commented 2 years ago

版本:2.15.0 复现方式:

原因是 head_object() 方法中没有调用 Response.read() 导致连接未被正常关闭,长时间运行使得进程文件描述符过多崩溃。

可能的修复方法:

huiguangjun commented 2 years ago

fix in d36d799c1c7087190bf73e1ee7208e90dbe4be46

georgexsh commented 2 years ago

@huiguangjun thanks!