mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 11:42:24 +08:00
Nick:
This commit is contained in:
parent
2e3ff85509
commit
f46bf19fa5
|
@ -280,7 +280,6 @@ describe("E2E Tests for API Routes", () => {
|
|||
expect(completedResponse.statusCode).toBe(200);
|
||||
expect(completedResponse.body).toHaveProperty("status");
|
||||
expect(completedResponse.body.status).toBe("failed");
|
||||
expect(completedResponse.body.partial_data?.length ?? 0).toBeLessThanOrEqual(completedResponse.body.data?.length ?? 0);
|
||||
|
||||
|
||||
}, 60000); // 60 seconds
|
||||
|
|
|
@ -70,6 +70,8 @@ export class WebScraperDataProvider {
|
|||
results[i + index] = result;
|
||||
})
|
||||
);
|
||||
try {
|
||||
if (this.mode === "crawl" && this.bullJobId) {
|
||||
const job = await getWebScraperQueue().getJob(this.bullJobId);
|
||||
const jobStatus = await job.getState();
|
||||
if (jobStatus === "failed") {
|
||||
|
@ -78,6 +80,8 @@ export class WebScraperDataProvider {
|
|||
);
|
||||
}
|
||||
}
|
||||
} catch (error) {}
|
||||
}
|
||||
return results.filter((result) => result !== null) as Document[];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user