We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 092ba38 commit f4ea4fbCopy full SHA for f4ea4fb
test/test.js
@@ -1130,18 +1130,20 @@ group('sliceUploadFile() ', function () {
1130
},
1131
onProgress: function (info) {
1132
if (!paused && info.percent >= 0.1) {
1133
+ console.log('-----paused', TaskId, info.percent);
1134
cos2.pauseTask(TaskId);
1135
paused = true;
1136
setTimeout(function () {
1137
restarted = true;
1138
+ console.log('-----restartTask', TaskId);
1139
cos2.restartTask(TaskId);
1140
}, 100);
1141
}
1142
1143
1144
function (err, data) {
1145
if (paused) {
- console.log('paused-------');
1146
+ console.log('paused-------', data);
1147
return;
1148
1149
0 commit comments