This commit is contained in:
Ruben Fiszel
2025-09-11 16:16:24 +00:00
parent 31b2dc295c
commit c4edf250f3
@@ -23,12 +23,16 @@
clearTimeout(scheduledForTimeout)
queueState = undefined
scheduledForTimeout = setTimeout(() => {
JobService.getScheduledFor({
workspace: workspace,
id: jobId
}).then((response) => {
scheduledFor = response
})
try {
JobService.getScheduledFor({
workspace: workspace,
id: jobId
}).then((response) => {
scheduledFor = response
})
} catch (error) {
console.error('Failed to fetch scheduled for:', error)
}
}, 2000)
}
})