From ba54d34d6000819e3ded4591da47dbf37d268783 Mon Sep 17 00:00:00 2001 From: Skylar Brown Date: Tue, 7 May 2024 11:11:23 -0700 Subject: [PATCH] fix: clarify error message for kurtosis portal command --- cli/cli/commands/portal/status/status.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/cli/commands/portal/status/status.go b/cli/cli/commands/portal/status/status.go index cff4f9bc5b..29f5f01716 100644 --- a/cli/cli/commands/portal/status/status.go +++ b/cli/cli/commands/portal/status/status.go @@ -35,7 +35,7 @@ func run(ctx context.Context, _ *flags.ParsedFlags, args *args.ParsedArgs) error out.PrintOutLn(fmt.Sprintf("Kurtosis Portal is running and healthy on PID %d", pid)) return nil } else if process != nil { - out.PrintOutLn(fmt.Sprintf("Kurtosis Portal process is on PID %d but it is unreachable", pid)) + out.PrintOutLn(fmt.Sprintf("Kurtosis Portal process is running on PID %d but the cloud instance was unreachable. Check your network connection, or re-connect to your cloud instance: https://cloud.kurtosis.com/connect", pid)) return nil } else if pid != 0 { out.PrintOutLn("Kurtosis Portal PID file exits but process is dead")