Skip to content
This repository was archived by the owner on Jun 30, 2021. It is now read-only.

Commit 563faec

Browse files
committed
default not retry when fail
1 parent de91363 commit 563faec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sample/Sample_0_FileExplorer/Forms/frmMain.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -401,11 +401,11 @@ private void ReadAppSettings()
401401

402402
AppSettings.AutomaticDownloadMaxThreadCount = true;
403403
AppSettings.DownloadMaxThreadCount = 1;
404-
AppSettings.RetryWhenDownloadFailed = true;
404+
AppSettings.RetryWhenDownloadFailed = false;
405405
AppSettings.MinDownloasSliceSize = MultiThreadDownloader.MIN_SLICE_SIZE / Utils.KB;
406406

407407
AppSettings.AutomaticUploadMaxThreadCount = true;
408-
AppSettings.RetryWhenUploadFailed = true;
408+
AppSettings.RetryWhenUploadFailed = false;
409409
AppSettings.UploadMaxThreadCount = 1;
410410
}
411411
}

0 commit comments

Comments
 (0)