Skip to content

Commit

Permalink
Don't issue warnings about manifest checksum mismatches
Browse files Browse the repository at this point in the history
Temporary hack to avoid issues with consistent checksumming on the
CDN.

Issue rust-lang#524
  • Loading branch information
brson committed Oct 13, 2016
1 parent e9d0a38 commit 83f44e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rustup-dist/src/notifications.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ impl<'a> Notification<'a> {
DownloadingComponent(_, _, _) |
InstallingComponent(_, _, _) |
ComponentAlreadyInstalled(_) |
ManifestChecksumFailedHack |
RollingBack | DownloadingManifest(_) => NotificationLevel::Info,
CantReadUpdateHash(_) | ExtensionNotInstalled(_) |
MissingInstalledComponent(_) |
ManifestChecksumFailedHack => NotificationLevel::Warn,
MissingInstalledComponent(_) => NotificationLevel::Warn,
NonFatalError(_) => NotificationLevel::Error,
}
}
Expand Down

0 comments on commit 83f44e7

Please sign in to comment.