diff --git a/Cargo.lock b/Cargo.lock index 31a1169f81..553c1f4cde 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5881,9 +5881,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.20.0" +version = "1.20.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57aec3cfa4c296db7255446efb4928a6be304b431a806216105542a67b6ca82e" +checksum = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581" dependencies = [ "autocfg 1.1.0", "bytes", diff --git a/gateway-cli/src/main.rs b/gateway-cli/src/main.rs index 81f24e6ec7..3337e890d8 100644 --- a/gateway-cli/src/main.rs +++ b/gateway-cli/src/main.rs @@ -131,7 +131,7 @@ impl Client { ) -> Result>> { // TODO should we be able to attach through the openapi client? let path = format!( - "ws://{}:{}/sp/sled/{}/component/sp3/serial_console/attach", + "ws://{}:{}/sp/sled/{}/component/sp3/serial-console/attach", self.server, self.port, self.sled ); let (ws, _response) = tokio_tungstenite::connect_async(path)