You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#[error("Deployment to node {0} failed, rolled back to previous generation")]
404
+
Rollback(String)
403
405
}
404
406
405
407
typeToDeploy<'a> = Vec<(
@@ -545,7 +547,7 @@ async fn run_deploy(
545
547
546
548
if deploy_data.merged_settings.interactive_sudo.unwrap_or(false){
547
549
warn!("Interactive sudo is enabled! Using a sudo password is less secure than correctly configured SSH keys.\nPlease use keys in production environments.");
548
-
550
+
549
551
if deploy_data.merged_settings.sudo.is_some(){
550
552
warn!("Custom sudo commands should be configured to accept password input from stdin when using the 'interactive sudo' option. Deployment may fail if the custom command ignores stdin.");
551
553
}else{
@@ -586,11 +588,17 @@ async fn run_deploy(
586
588
};
587
589
588
590
for data indata_iter(){
589
-
deploy::push::build_profile(data).await?;
591
+
let node_name:String = data.deploy_data.node_name.to_string();
0 commit comments