Skip to content

Commit

Permalink
Update shiplift crate - virtual_size optional field of docker image a…
Browse files Browse the repository at this point in the history
…ttributes
  • Loading branch information
aditijannu committed Mar 13, 2024
1 parent 8e1e27e commit 91bb387
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tools/container-converter/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tools/container-converter/src/image.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ mod tests {
repo_tags: None,
repo_digests: None,
size: 0,
virtual_size: 0,
virtual_size: Some(0),
};

let mut input_image = ImageWithDetails { reference, details };
Expand Down
2 changes: 1 addition & 1 deletion tools/container-converter/src/image_builder/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ mod tests {
repo_tags: None,
repo_digests: None,
size: 0,
virtual_size: 0,
virtual_size: Some(0),
};

let mut input_image = ImageWithDetails { reference, details };
Expand Down

0 comments on commit 91bb387

Please sign in to comment.