- 13 Oct, 2020 2 commits
-
-
Jonah Williams authored
Remove "This is taking a long time" progress timeout and TimeoutConfiguration.
-
Jonah Williams authored
All of the network requests from google cloud storage include an x-goog-hash header which contains an MD5 checksum. If present, use to validate that the downloaded binary is valid. This will rule out corrupt files as the cause of getting started crashers in the flutter_tool. #38980 This does not fully resolve the above issue, because while we can check if the checksum matches what was expected from cloud storage, this A) may not necessarily be present and B) may not match up to what should be uploaded as part of the engine build process. But when life gives you lemons you hash those lemons using an outdated hashing algorithm.
-
- 05 Oct, 2020 1 commit
-
-
Jonah Williams authored
Any File-derived IOSink may throw un-handleable async exceptions into the zone, see dart-lang/sdk#43663 . Instead, just write to a file with an append mode.
-
- 15 Sep, 2020 2 commits
-
-
Jonah Williams authored
Like the ProcessException thrown from zip running on a bad file, the tool should catch the ArchiveException thrown from windows implementation using package:archive.
-
Jonah Williams authored
Because the Status spinner was only created on setup, the second stop would asset/crash. Fixes #65449
-
- 31 Aug, 2020 1 commit
-
-
Jonah Williams authored
Exit the tool after a repeated network error to download. previously we were returning null and continuing on, leading to a ProcessException when we unzipped a missing file.
-
- 25 Aug, 2020 1 commit
-
-
Jonah Williams authored
-