@be-link/cos 1.12.10 → 1.12.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/upload.js +1 -4
- package/package.json +1 -1
package/bin/upload.js
CHANGED
|
@@ -148,7 +148,6 @@ function upload(url, filename, retryCount = 0, maxRetries = 3) {
|
|
|
148
148
|
reject(new Error('上传参数错误:url 和 filename 不能为空'));
|
|
149
149
|
return;
|
|
150
150
|
}
|
|
151
|
-
console.log('🔐 上传参数:', { url, filename, bucketConfig, region, projectRemoteUrl });
|
|
152
151
|
cos.putObject(
|
|
153
152
|
{
|
|
154
153
|
Bucket: bucketConfig.name,
|
|
@@ -163,10 +162,9 @@ function upload(url, filename, retryCount = 0, maxRetries = 3) {
|
|
|
163
162
|
// },
|
|
164
163
|
},
|
|
165
164
|
function (err, data) {
|
|
166
|
-
console.log(`🔐 上传结果: ${JSON.stringify(data)}`);
|
|
167
|
-
console.log(`❕ 上传失败: ${JSON.stringify(err)}`);
|
|
168
165
|
if (err) {
|
|
169
166
|
// 重试逻辑
|
|
167
|
+
console.log(`❕ 上传失败: ${JSON.stringify(err)}`);
|
|
170
168
|
if (retryCount < maxRetries) {
|
|
171
169
|
console.log(` ⚠️ 上传失败,正在重试 (${retryCount + 1}/${maxRetries}): ${filename}`);
|
|
172
170
|
setTimeout(() => {
|
|
@@ -179,7 +177,6 @@ function upload(url, filename, retryCount = 0, maxRetries = 3) {
|
|
|
179
177
|
reject(err);
|
|
180
178
|
}
|
|
181
179
|
} else {
|
|
182
|
-
console.log(` ✅ 上传成功: ${filename}`);
|
|
183
180
|
resolve(data);
|
|
184
181
|
}
|
|
185
182
|
},
|