Skip to content

Commit bc300c3

Browse files
committed
Auto merge of #635 - Kmeakin:master, r=Mark-Simulacrum
Bump systemstat The old version would fail to correctly measure disk space in some circumstances, leading to experiments eventually failing due to full disk.
2 parents e6a3558 + e3fa1ed commit bc300c3

File tree

3 files changed

+15
-67
lines changed

3 files changed

+15
-67
lines changed

Cargo.lock

Lines changed: 13 additions & 65 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ env_logger = "0.6.0"
5656
hmac = "0.7"
5757
sha-1 = "0.8"
5858
rust_team_data = { git = "https://github.com/rust-lang/team" }
59-
systemstat = "0.1.4"
59+
systemstat = "0.1.11"
6060
rustwide = { version = "0.14.0", features = ["unstable", "unstable-toolchain-ci"] }
6161
percent-encoding = "2.1.0"
6262
remove_dir_all = "0.5.2"

src/results/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ string_enum!(pub enum EncodingType {
6464
Gzip => "gzip",
6565
});
6666

67-
#[derive(Clone, PartialEq, Debug)]
67+
#[derive(Clone, PartialEq, Eq, Debug)]
6868
pub enum EncodedLog {
6969
Plain(Vec<u8>),
7070
Gzip(Vec<u8>),

0 commit comments

Comments
 (0)