From efafc7376fa70f482c5dba5d96b25e6240923375 Mon Sep 17 00:00:00 2001 From: danielbotros Date: Wed, 3 Jun 2026 11:56:09 -0400 Subject: [PATCH] Add staging signaling server address inference Infer app.viam.dev:443 as the signaling server address for .viamstg.cloud hosts, matching the Go implementation in rdk. --- src/rpc/webrtc.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/rpc/webrtc.rs b/src/rpc/webrtc.rs index 40314da..5e9733f 100644 --- a/src/rpc/webrtc.rs +++ b/src/rpc/webrtc.rs @@ -80,6 +80,8 @@ impl Options { Some(("app.viam.com:443".to_string(), true)) } else if path.contains(".robot.viaminternal") { Some(("app.viaminternal:8089".to_string(), false)) + } else if path.contains(".viamstg.cloud") { + Some(("app.viam.dev:443".to_string(), true)) } else { None }