Skip to content

Commit bbb3dd3

Browse files
committed
Contact your administrator for assistance
1 parent 344749e commit bbb3dd3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cli/ssh.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ func (r *RootCmd) ssh() *clibase.Cmd {
119119
}
120120

121121
if unsupportedWorkspace && isTTYErr(inv) {
122-
_, _ = fmt.Fprintln(inv.Stderr, "👋 Your workspace uses legacy parameters which are not supported anymore. Please delete the workspace and use a different template.")
122+
_, _ = fmt.Fprintln(inv.Stderr, "👋 Your workspace uses legacy parameters which are not supported anymore. Contact your administrator for assistance.")
123123
}
124124

125125
updateWorkspaceBanner, outdated := verifyWorkspaceOutdated(client, workspace)

coderd/wsbuilder/wsbuilder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ func (b *Builder) verifyNoLegacyParameters() error {
584584
}
585585

586586
if len(parameterSchemas) > 0 {
587-
return xerrors.Errorf("Legacy parameters are not supported anymore, delete the workspace and the related template.")
587+
return xerrors.Errorf("Legacy parameters are not supported anymore. Contact your administrator for assistance.")
588588
}
589589
return nil
590590
}

site/src/components/TemplateVersionWarnings/TemplateVersionWarnings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const TemplateVersionWarnings: FC<
1919
<div data-testid="error-unsupported-workspaces">
2020
<Alert severity="error">
2121
This template uses legacy parameters which are not supported anymore.
22-
Please delete the workspace and the related template.
22+
Contact your administrator for assistance.
2323
</Alert>
2424
</div>
2525
</Maybe>

0 commit comments

Comments
 (0)