|
@@ -105,7 +105,7 @@ const doUpload = async ctx => new Promise((resolve, reject) => {
|
|
|
if (finishFlag && results.length == resultsLength) {
|
|
|
setTimeout(() => {
|
|
|
resolve(results)
|
|
|
- }, 1000);
|
|
|
+ }, 10000);
|
|
|
}
|
|
|
})
|
|
|
});
|
|
@@ -116,7 +116,7 @@ const doUpload = async ctx => new Promise((resolve, reject) => {
|
|
|
if (resultsLength == results.length) {
|
|
|
setTimeout(() => {
|
|
|
resolve(results)
|
|
|
- }, 1000);
|
|
|
+ }, 10000);
|
|
|
} else {
|
|
|
finishFlag = true
|
|
|
console.log(`busboy finish : error: results长度不对`)
|