mirror of
https://git.mirrors.martin98.com/https://github.com/mendableai/firecrawl
synced 2025-08-12 11:09:00 +08:00
fix(scrapeURL/pdf/mu): remove log
This commit is contained in:
parent
b03670a8b7
commit
bfe731309c
@ -87,7 +87,6 @@ async function scrapePDFWithRunPodMU(
|
|||||||
let result: { markdown: string } | undefined = podStart.output;
|
let result: { markdown: string } | undefined = podStart.output;
|
||||||
|
|
||||||
if (status === "IN_QUEUE" || status === "IN_PROGRESS") {
|
if (status === "IN_QUEUE" || status === "IN_PROGRESS") {
|
||||||
meta.logger.info("RunPod MU returned while in status " + status);
|
|
||||||
do {
|
do {
|
||||||
abort?.throwIfAborted();
|
abort?.throwIfAborted();
|
||||||
await new Promise(resolve => setTimeout(resolve, 2500));
|
await new Promise(resolve => setTimeout(resolve, 2500));
|
||||||
@ -110,7 +109,6 @@ async function scrapePDFWithRunPodMU(
|
|||||||
mock: meta.mock,
|
mock: meta.mock,
|
||||||
abort,
|
abort,
|
||||||
});
|
});
|
||||||
meta.logger.info("RunPod MU status " + podStatus.status);
|
|
||||||
status = podStatus.status;
|
status = podStatus.status;
|
||||||
result = podStatus.output;
|
result = podStatus.output;
|
||||||
} while (status !== "COMPLETED" && status !== "FAILED");
|
} while (status !== "COMPLETED" && status !== "FAILED");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user