@@ -174,10 +174,10 @@ func runRebuild(ctx context.Context, supervisorClient *supervisor.SupervisorClie
174
174
runLog .Logger .SetLevel (logrus .TraceLevel )
175
175
setLoggerFormatter (runLog .Logger )
176
176
runLog .Logger .SetOutput (os .Stdout )
177
- runLog .Info ("Starting the debug workspace..." )
177
+ runLog .Info ("Starting the workspace..." )
178
178
179
179
if wsInfo .DebugWorkspaceType != api .DebugWorkspaceType_noDebug {
180
- runLog .Error ("It is not possible to restart the debug workspace while you are currently inside it." )
180
+ runLog .Error ("It is not possible to restart the workspace while you are currently inside it." )
181
181
return GpError {Err : err , OutCome : utils .Outcome_UserErr , ErrorCode : utils .RebuildErrorCode_AlreadyInDebug , Silence : true }
182
182
}
183
183
stopDebugContainer (ctx , dockerPath )
@@ -293,7 +293,7 @@ func runRebuild(ctx context.Context, supervisorClient *supervisor.SupervisorClie
293
293
294
294
ssh := "ssh 'debug-" + wsInfo .WorkspaceId + "@" + workspaceUrl .Host + ".ssh." + wsInfo .WorkspaceClusterHost + "'"
295
295
sep := strings .Repeat ("=" , len (ssh ))
296
- runLog .Infof (`The Debug Workspace is UP!
296
+ runLog .Infof (`The workspace is UP!
297
297
%s
298
298
299
299
Open in Browser at:
@@ -303,7 +303,7 @@ Connect using SSH keys (https://gitpod.io/keys):
303
303
%s
304
304
305
305
%s` , sep , workspaceUrl , ssh , sep )
306
- err := notify (ctx , supervisorClient , workspaceUrl .String (), "The Debug Workspace is UP." )
306
+ err := notify (ctx , supervisorClient , workspaceUrl .String (), "The workspace is UP." )
307
307
if err != nil && ctx .Err () == nil {
308
308
log .WithError (err ).Error ("failed to notify" )
309
309
}
@@ -375,7 +375,7 @@ Connect using SSH keys (https://gitpod.io/keys):
375
375
376
376
err = runCmd .Start ()
377
377
if err != nil {
378
- fmt .Println ("Failed to run a debug workspace" )
378
+ fmt .Println ("Failed to run a workspace" )
379
379
return GpError {Err : err , OutCome : utils .Outcome_UserErr , ErrorCode : utils .RebuildErrorCode_DockerRunFailed , Silence : true }
380
380
}
381
381
@@ -388,7 +388,7 @@ Connect using SSH keys (https://gitpod.io/keys):
388
388
select {
389
389
case <- ctx .Done ():
390
390
fmt .Println ("" )
391
- logrus .Info ("Gracefully stopping the debug workspace..." )
391
+ logrus .Info ("Gracefully stopping the workspace..." )
392
392
stopDebugContainer (context .Background (), dockerPath )
393
393
case <- stopped :
394
394
}
0 commit comments