Skip to content

Commit

Permalink
Client host config needs a --long option
Browse files Browse the repository at this point in the history
  • Loading branch information
cholcombe973 committed Sep 27, 2017
1 parent a3d42b1 commit d139419
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions client/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ fn main() {
Arg::with_name("host")
.default_value("localhost")
.help("The host to call for service")
.long("host")
.required(false)
.takes_value(true),
)
Expand Down
2 changes: 1 addition & 1 deletion disk-manager/src/backend/ceph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ impl CephBackend {
info!("Connecting to Ceph");
let cluster_handle = connect_to_ceph(&deserialized.user_id, &deserialized.config_file)
.map_err(|e| Error::new(ErrorKind::Other, e))?;
info!("Connected to ceph");
info!("Connected to Ceph");
Ok(CephBackend { cluster_handle: cluster_handle })
}

Expand Down

0 comments on commit d139419

Please sign in to comment.