web/ProcessingQueueItem: remove strict progress step marker

cuz workers can run out of order & concurrently now
This commit is contained in:
wukko 2025-05-22 23:27:24 +06:00
parent 9452a8d8fe
commit ae8eee099f
No known key found for this signature in database
GPG Key ID: 3E30B3F26C7B4AA2

View File

@ -109,14 +109,7 @@
});
if (firstUnstarted) {
const starting = $t(`queue.state.starting.${firstUnstarted.worker}`);
if (info.pipeline.length > 1) {
const currentPipeline = info.completedWorkers.size + 1;
return `${starting} (${currentPipeline}/${info.pipeline.length})`;
}
return starting;
return $t(`queue.state.starting.${firstUnstarted.worker}`);
}
return $t("queue.state.starting");