From 4e1366ffbcfaefe8072f32a341f922c7e56f8b48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matev=C5=BE=20Jekovec?= Date: Mon, 11 May 2026 16:41:21 +0200 Subject: [PATCH] fix: rofl machine show crash if deployment not available If ROFL was being deployed, but not able to start up, rofl machine show crashed. --- cmd/rofl/machine/show.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/rofl/machine/show.go b/cmd/rofl/machine/show.go index aa94feed..eb87f391 100644 --- a/cmd/rofl/machine/show.go +++ b/cmd/rofl/machine/show.go @@ -128,7 +128,7 @@ func prettyPrintMachine(mCfg *machineCfg, out *machineShowOutput) { fmt.Printf("Proxy:\n") fmt.Printf(" Domain: %s\n", proxyDomain) - prettyPrintMachinePorts(mCfg.ExtraCfg, out.Machine.Deployment.AppID, out.Machine, proxyDomain) + prettyPrintMachinePorts(mCfg.ExtraCfg, out.Replica.App, out.Machine, proxyDomain) } }