We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0494dee commit d18b79dCopy full SHA for d18b79d
argilla-frontend/v1/domain/usecases/create-dataset-use-case.ts
@@ -50,9 +50,9 @@ export class CreateDatasetUseCase {
50
await this.datasetRepository.import(datasetCreated, dataset);
51
52
let retries = 0;
53
- const debounce = Debounce.from(1000);
+ const debounce = Debounce.from(3000);
54
55
- while (retries < 30) {
+ while (retries < 10) {
56
revalidateCache(`/v1/datasets/${datasetCreated}/progress`);
57
58
const progress = await this.datasetRepository.getProgress(
0 commit comments