Update log_job.ts

This commit is contained in:
Nicolas 2025-02-25 21:01:00 -03:00
parent 59d09f5c45
commit ec90aaffd6

View File

@ -23,6 +23,11 @@ function cleanOfNull<T>(x: T): T {
async function indexJob(job: FirecrawlJob): Promise<void> {
try {
// Skip indexing for anything except single_urls and scrape modes
if (job.mode !== "single_urls" && job.mode !== "scrape") {
return;
}
const response = await fetch(`${process.env.FIRE_INDEX_SERVER_URL}/api/jobs`, {
method: 'POST',
headers: {