This commit is contained in:
aozhiwei 2023-07-03 15:50:51 +08:00
parent 06c38e743d
commit f7e0bfe55c

View File

@ -36,6 +36,7 @@ class BcSpider extends BaseTask {
events.push(event);
this.createPullBcEventService(net, event);
});
this.outputProgressInfo();
}
createPullBcEventService(net, event) {
@ -46,8 +47,10 @@ class BcSpider extends BaseTask {
return pullBcEventService;
}
outputProgressInfo() {
async outputProgressInfo() {
while (true) {
await utils.sleep(1000 * 10);
}
}
}