Skip to content

Commit

Permalink
Progress fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Razz4780 committed Dec 6, 2023
1 parent cfa8b16 commit 79c14de
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions mirrord/cli/src/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,7 @@ where
}
Err(e) if config.operator == Some(true) || e.should_abort_cli() => return Err(e.into()),
Err(e) => {
subtask.warning(&format!(
"connecting failed, proceeding without the operator"
));
subtask.failure(Some(&e.to_string()))
subtask.failure(Some(&format!("connecting to the operator failed: {e}")));
}
}
}
Expand Down

0 comments on commit 79c14de

Please sign in to comment.