更新 src/aliyunoss.cpp

This commit is contained in:
2026-01-06 21:15:35 +08:00
parent 385102f39e
commit 6502b8e069

View File

@@ -158,11 +158,11 @@ std::string module::aliyun_oss::del(const std::string& endpoint, const std::stri
headers = aos_table_make(options->pool, 1);
apr_table_set(headers, OSS_CONTENT_TYPE, content_type.c_str());
//apr_table_set(headers, OSS_CONTENT_TYPE, content_type.c_str());
aos_str_set(&bucket, bucket_name.c_str());
aos_str_set(&object, object_name.c_str());
s = oss_delete_object(oss_client_options, &bucket, &object, &resp_headers);
s = oss_delete_object(options, &bucket, &object, &resp_headers);
std::string return_msg;
if (aos_status_is_ok(s)) {