mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-15 19:22:19 +08:00
fix(scrape): better timeout handling
This commit is contained in:
parent
aa9a47bce7
commit
3815d24628
|
@ -86,7 +86,7 @@ export async function scrapeHelper(
|
|||
try {
|
||||
doc = (await waitForJob<Document>(jobId, timeout));
|
||||
} catch (e) {
|
||||
if (e instanceof Error && e.message.startsWith("Job wait")) {
|
||||
if (e instanceof Error && (e.message.startsWith("Job wait") || e.message === "timeout")) {
|
||||
span.setAttribute("timedOut", true);
|
||||
return {
|
||||
success: false,
|
||||
|
|
|
@ -196,7 +196,7 @@ export async function searchController(req: Request, res: Response) {
|
|||
});
|
||||
return res.status(result.returnCode).json(result);
|
||||
} catch (error) {
|
||||
if (error instanceof Error && error.message.startsWith("Job wait")) {
|
||||
if (error instanceof Error && (error.message.startsWith("Job wait") || error.message === "timeout")) {
|
||||
return res.status(408).json({ error: "Request timed out" });
|
||||
}
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@ export async function scrapeController(
|
|||
doc = await waitForJob<Document>(jobId, timeout + totalWait); // TODO: better types for this
|
||||
} catch (e) {
|
||||
logger.error(`Error in scrapeController: ${e}`);
|
||||
if (e instanceof Error && e.message.startsWith("Job wait")) {
|
||||
if (e instanceof Error && (e.message.startsWith("Job wait") || e.message === "timeout")) {
|
||||
return res.status(408).json({
|
||||
success: false,
|
||||
error: "Request timed out",
|
||||
|
|
Loading…
Reference in New Issue
Block a user