Skip to content

Commit

Permalink
tools/unitctl: bump bollard and clarify docker client error
Browse files Browse the repository at this point in the history
Signed-off-by: Ava Hahn <[email protected]>
  • Loading branch information
avahahn committed Sep 23, 2024
1 parent 4f050af commit f3405a7
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 50 deletions.
82 changes: 34 additions & 48 deletions tools/unitctl/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tools/unitctl/unit-client-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ which = "5.0"

unit-openapi = { path = "../unit-openapi" }
rustls = "0.23.5"
bollard = "0.16.1"
bollard = "0.17.1"
regex = "1.10.4"
pbr = "1.1.1"

Expand Down
2 changes: 1 addition & 1 deletion tools/unitctl/unit-client-rs/src/unitd_docker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ impl UnitdContainer {
if let Ok(docker) = Docker::connect_with_local_defaults() {
match docker.list_containers::<String>(None).await {
Err(e) => {
eprintln!("{}", e);
eprintln!("Could not read docker instances: {}", e);
vec![]
}
Ok(summary) => {
Expand Down

0 comments on commit f3405a7

Please sign in to comment.