-
Notifications
You must be signed in to change notification settings - Fork 362
Clarify that "errors" are not fatal #649
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -834,7 +834,7 @@ private static async Task<DepotFilesData> ProcessDepotManifestAndFiles(Cancellat | |||||
| break; | ||||||
| } | ||||||
|
|
||||||
| Console.WriteLine("Encountered error downloading depot manifest {0} {1}: {2}", depot.DepotId, depot.ManifestId, e.StatusCode); | ||||||
| Console.WriteLine("Encountered {2} for depot manifest {0} {1}. Retrying.", depot.DepotId, depot.ManifestId, e.StatusCode); | ||||||
| } | ||||||
| catch (OperationCanceledException) | ||||||
| { | ||||||
|
|
@@ -843,7 +843,7 @@ private static async Task<DepotFilesData> ProcessDepotManifestAndFiles(Cancellat | |||||
| catch (Exception e) | ||||||
| { | ||||||
| cdnPool.ReturnBrokenConnection(connection); | ||||||
| Console.WriteLine("Encountered error downloading manifest for depot {0} {1}: {2}", depot.DepotId, depot.ManifestId, e.Message); | ||||||
| Console.WriteLine("Error downloading manifest for depot {0} {1}: {2} Retrying.", depot.DepotId, depot.ManifestId, e.Message); | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| } | ||||||
| } while (newManifest == null); | ||||||
|
|
||||||
|
|
@@ -1258,7 +1258,7 @@ private static async Task DownloadSteam3AsyncDepotFileChunk( | |||||
| break; | ||||||
| } | ||||||
|
|
||||||
| Console.WriteLine("Encountered error downloading chunk {0}: {1}", chunkID, e.StatusCode); | ||||||
| Console.WriteLine("Encountered {1} for chunk {0}. Retrying.", chunkID, e.StatusCode); | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is definitely not gonna be work out, because StatusCode is a value like
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you want the integer value (
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think |
||||||
| } | ||||||
| catch (OperationCanceledException) | ||||||
| { | ||||||
|
|
@@ -1267,7 +1267,7 @@ private static async Task DownloadSteam3AsyncDepotFileChunk( | |||||
| catch (Exception e) | ||||||
| { | ||||||
| cdnPool.ReturnBrokenConnection(connection); | ||||||
| Console.WriteLine("Encountered unexpected error downloading chunk {0}: {1}", chunkID, e.Message); | ||||||
| Console.WriteLine("Error downloading chunk {0}: {1} Retrying.", chunkID, e.Message); | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| } | ||||||
| } while (written == 0); | ||||||
|
|
||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.