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

Commit

Permalink
default not retry when fail
Browse files Browse the repository at this point in the history
  • Loading branch information
GangZhuo committed Jun 19, 2015
1 parent de91363 commit 563faec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sample/Sample_0_FileExplorer/Forms/frmMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -401,11 +401,11 @@ private void ReadAppSettings()

AppSettings.AutomaticDownloadMaxThreadCount = true;
AppSettings.DownloadMaxThreadCount = 1;
AppSettings.RetryWhenDownloadFailed = true;
AppSettings.RetryWhenDownloadFailed = false;
AppSettings.MinDownloasSliceSize = MultiThreadDownloader.MIN_SLICE_SIZE / Utils.KB;

AppSettings.AutomaticUploadMaxThreadCount = true;
AppSettings.RetryWhenUploadFailed = true;
AppSettings.RetryWhenUploadFailed = false;
AppSettings.UploadMaxThreadCount = 1;
}
}
Expand Down

0 comments on commit 563faec

Please sign in to comment.