Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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