Skip to content

Commit f2d3a7d

Browse files
committed
Improve connection error messages
1 parent 7090b03 commit f2d3a7d

File tree

3 files changed

+24
-6
lines changed

3 files changed

+24
-6
lines changed

tools/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/poststation-cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "poststation-cli"
33
# This version of the CLI tested with poststation v0.14.0
4-
version = "0.4.1"
4+
version = "0.4.2"
55
edition = "2021"
66
authors = ["James Munns <[email protected]>"]
77
description = "A CLI tool for poststation"

tools/poststation-cli/src/main.rs

+22-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ use device::{device_cmds, Device};
66
use directories::ProjectDirs;
77
use postcard_rpc::host_client::{EndpointReport, TopicReport};
88
use poststation_sdk::{
9-
connect, connect_insecure, schema::schema::owned::OwnedDataModelType, PoststationClient,
9+
connect, connect_insecure, schema::schema::owned::OwnedDataModelType, ConnectError,
10+
PoststationClient,
1011
};
1112

1213
mod device;
@@ -62,12 +63,29 @@ async fn inner_main(cli: Cli) -> anyhow::Result<()> {
6263
.unwrap_or_else(|| "127.0.0.1:51837".parse().unwrap());
6364

6465
let command = cli.command;
65-
let client = if cli.insecure {
66+
let client_res = if cli.insecure {
6667
connect_insecure(server.port()).await
6768
} else {
6869
connect(server).await
69-
}
70-
.unwrap();
70+
};
71+
72+
let client = match client_res {
73+
Ok(c) => c,
74+
Err(e) => match e {
75+
ConnectError::CaCertificate => {
76+
bail!("An error with the CA certificate occurred. Ensure you have the correct path and certificate for the server you want to connect to.");
77+
}
78+
ConnectError::Connection => {
79+
bail!("An error occurred while establishing a a connection. Ensure the server is running, and your CLI and server settings match.");
80+
}
81+
ConnectError::Protocol => {
82+
bail!("A protocol error occurred. Ensure that your CLI and Server are compatible versions");
83+
}
84+
other => {
85+
bail!("An unknown error occurred: {other:?}");
86+
}
87+
},
88+
};
7189

7290
match command {
7391
Commands::Ls => {

0 commit comments

Comments
 (0)