Remove retry on export task

This commit is contained in:
Tom Moor
2022-07-23 17:00:32 +01:00
parent 4bca081faa
commit 4f537c7578

View File

@@ -120,7 +120,7 @@ export default class ExportMarkdownZipTask extends BaseTask<Props> {
public get options() {
return {
priority: TaskPriority.Background,
attempts: 2,
attempts: 1,
};
}
}