We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
restored_layer_action
1 parent 83cba6f commit 6b144ebCopy full SHA for 6b144eb
1 file changed
src/layers/python.rs
@@ -36,15 +36,15 @@ pub(crate) fn install_python(
36
let cached_python_version = cached_metadata.python_version.clone();
37
let reasons = cache_invalidation_reasons(cached_metadata, &new_metadata);
38
if reasons.is_empty() {
39
- Ok((
+ (
40
RestoredLayerAction::KeepLayer,
41
(cached_python_version, Vec::new()),
42
- ))
+ )
43
} else {
44
45
RestoredLayerAction::DeleteLayer,
46
(cached_python_version, reasons),
47
48
}
49
},
50
0 commit comments