Skip to content

Commit

Permalink
Merge pull request #4 from SDS/SDS-2741
Browse files Browse the repository at this point in the history
Scaleio made a field optional it seems in the new release
  • Loading branch information
cholco202 authored and GitHub Enterprise committed Aug 31, 2018
2 parents 7f934cc + ef7f012 commit 3e5d40c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/scaleio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ pub struct SdsStatistics {
fwd_rebuild_write_bwc: BWC,
in_maintenance_vac_in_kb: u64,
in_use_vac_in_kb: u64,
maintenance_mode_state: u64,
maintenance_mode_state: Option<u64>,
max_capacity_in_kb: u64,
norm_rebuild_read_bwc: BWC,
norm_rebuild_write_bwc: BWC,
Expand Down
2 changes: 1 addition & 1 deletion src/vnx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1559,7 +1559,7 @@ fn test_storage_pool_query_parser() {
};
let res = StoragePools::from_xml(&data).unwrap();
println!("result: {:#?}", res);
let _ = res.into_point(None).unwrap();
let _ = res.into_point(None);
}

#[derive(Debug)]
Expand Down

0 comments on commit 3e5d40c

Please sign in to comment.