We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc5e6fa commit 9176075Copy full SHA for 9176075
containerd-shim-spin/src/engine.rs
@@ -145,7 +145,10 @@ impl SpinEngine {
145
.ok()
146
.map(|s| s.split(',').map(|s| s.to_string()).collect::<Vec<String>>());
147
if let Some(components) = components_to_execute {
148
- crate::retain::retain_components(&mut locked_app, &components)?;
+ if let Err(e) = crate::retain::retain_components(&mut locked_app, &components) {
149
+ println!("Error with selective deployment: {:?}", e);
150
+ return Err(e);
151
+ }
152
}
153
configure_application_variables_from_environment_variables(&locked_app)?;
154
let trigger_cmds = get_supported_triggers(&locked_app)
0 commit comments