From 6c7204aa684eca691ea5b85d2b47ec2c7b586a06 Mon Sep 17 00:00:00 2001 From: shuochen0311 Date: Wed, 20 May 2026 17:00:43 +0000 Subject: [PATCH] [lakebox] Default staging SSH gateway to ue1.s.dbrx.dev us-east-1 is the staging region where the SSH gateway is reachable in practice; uw2.s.dbrx.dev does not have a routable lakebox listener. Users targeting a different staging region can still override with --gateway. Co-authored-by: Isaac --- cmd/lakebox/ssh.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmd/lakebox/ssh.go b/cmd/lakebox/ssh.go index e891acc7ca..be7d8c3665 100644 --- a/cmd/lakebox/ssh.go +++ b/cmd/lakebox/ssh.go @@ -16,13 +16,14 @@ import ( const ( defaultGatewayHost = "uw2.dbrx.dev" - stagingDefaultGatewayHost = "uw2.s.dbrx.dev" + stagingDefaultGatewayHost = "ue1.s.dbrx.dev" defaultGatewayPort = "2222" ) // resolveGatewayHost picks the SSH gateway hostname based on the workspace host. // Staging workspaces (*.staging.cloud.databricks.com etc.) route through -// uw2.s.dbrx.dev; everything else uses prod uw2.dbrx.dev. +// ue1.s.dbrx.dev; everything else uses uw2.dbrx.dev. Both are dev-tier +// listeners (`.dbrx.dev`); there is no prod listener yet. func resolveGatewayHost(workspaceHost string) string { if strings.Contains(workspaceHost, ".staging.") { return stagingDefaultGatewayHost