From 4762f2dc32d330df65d6a5fdf8e9e1153aad0223 Mon Sep 17 00:00:00 2001 From: "devsy-app[bot]" <277138668+devsy-app[bot]@users.noreply.github.com> Date: Fri, 14 Aug 2026 09:46:13 +0000 Subject: [PATCH] fix(cmd): lowercase logs, fix stale comment test body --- cmd/pro/workspace/sleep.go | 4 ++-- cmd/pro/workspace/wakeup.go | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cmd/pro/workspace/sleep.go b/cmd/pro/workspace/sleep.go index 1674a0bd4..6c977e090 100644 --- a/cmd/pro/workspace/sleep.go +++ b/cmd/pro/workspace/sleep.go @@ -108,8 +108,8 @@ func (cmd *SleepCmd) sleep( return err } - // wait for sleeping - log.Info("Wait until workspace is sleeping") + // wait for the workspace to sleep + log.Info("wait until workspace is sleeping") err = waitForWorkspacePhase(ctx, waitForWorkspacePhaseParams{ managementClient: managementClient, projectName: cmd.Project, diff --git a/cmd/pro/workspace/wakeup.go b/cmd/pro/workspace/wakeup.go index bf09ea249..b981c81d3 100644 --- a/cmd/pro/workspace/wakeup.go +++ b/cmd/pro/workspace/wakeup.go @@ -88,7 +88,7 @@ func (cmd *WakeupCmd) wakeup( workspaceInstance *managementv1.DevsyWorkspaceInstance, ) error { if workspaceInstance.Status.Phase != storagev1.InstanceSleeping { - log.Infof("Workspace %s is not sleeping", workspaceInstance.Name) + log.Infof("workspace %s is not sleeping", workspaceInstance.Name) return nil } @@ -101,8 +101,8 @@ func (cmd *WakeupCmd) wakeup( return err } - // wait for sleeping - log.Info("Wait until workspace wakes up") + // wait for the workspace to wake up + log.Info("wait until workspace wakes up") err = waitForWorkspacePhase(ctx, waitForWorkspacePhaseParams{ managementClient: managementClient, projectName: cmd.Project,