This commit is contained in:
rentu 2020-03-19 13:21:20 +08:00
Родитель 792f1e8875
Коммит 7a60e14caf
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -12,7 +12,7 @@ export class RetryPolicy {
await func();
break;
} catch (err) {
if (retries < maxRetryTimes) {
if (retries <= maxRetryTimes) {
outputChannel.appendLine(`Task failed with error: ${err.message}, wait ${retryInterval} milliseconds and retry (${retries})...`);
await this.sleep(retryInterval);
continue;