Skip to content

Commit

Permalink
Fix incorrect manual URL path in gateway-cli (#1509)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgallagher authored Jul 28, 2022
1 parent ce231fe commit be5d3ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gateway-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ impl Client {
) -> Result<WebSocketStream<MaybeTlsStream<TcpStream>>> {
// 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)
Expand Down

0 comments on commit be5d3ac

Please sign in to comment.