Skip to content

Commit f927204

Browse files
authored
chore: remove references to restarting/stopping in update workspace language (#13852)
* chore: remove references to restarting/stopping in update workspace language * reword updating workspaces to remove the word "restart" * fix batch wording
1 parent 266913a commit f927204

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

docs/workspaces.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,13 +151,11 @@ manually updated the workspace.
151151
## Updating workspaces
152152

153153
After updating the default version of the template that a workspace was created
154-
from, you can update the workspace.
154+
from, you can update the workspace. Coder will start the workspace with said
155+
version.
155156

156157
![Updating a workspace](./images/workspace-update.png)
157158

158-
If the workspace is running, Coder stops it, updates it, then starts the
159-
workspace again.
160-
161159
On the command line:
162160

163161
```shell

site/src/pages/WorkspacePage/WorkspaceReadyPage.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,12 +336,13 @@ export const WorkspaceReadyPage: FC<WorkspaceReadyPageProps> = ({
336336
setIsConfirmingUpdate(false);
337337
}}
338338
onClose={() => setIsConfirmingUpdate(false)}
339-
title="Update and restart?"
339+
title="Update workspace?"
340340
confirmText="Update"
341341
description={
342342
<Stack>
343343
<p>
344-
Restarting your workspace will stop all running processes and{" "}
344+
Updating your workspace will start the workspace on the latest
345+
template version. This can{" "}
345346
<strong>delete non-persistent data</strong>.
346347
</p>
347348
{latestVersion?.message && (

site/src/pages/WorkspacesPage/BatchUpdateConfirmation.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,8 @@ const Consequences: FC<ConsequencesProps> = ({ runningWorkspaces }) => {
212212
<p>You are about to update {workspaceCount}.</p>
213213
<ul css={styles.consequences}>
214214
<li>
215-
Updating will stop all running processes and delete non-persistent
216-
data.
215+
Updating will start workspaces on their latest template versions. This
216+
can delete non-persistent data.
217217
</li>
218218
<li>
219219
Anyone connected to a running workspace will be disconnected until the

0 commit comments

Comments
 (0)