We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent9d57279 commitcca9490Copy full SHA for cca9490
agent/api.go
@@ -57,8 +57,8 @@ func (a *agent) apiHandler() (http.Handler, func() error) {
57
}else {
58
r.HandleFunc("/api/v0/containers",func(w http.ResponseWriter,r*http.Request) {
59
httpapi.Write(r.Context(),w,http.StatusForbidden, codersdk.Response{
60
-Message:"Container API is not enabled.",
61
-Detail:"Set the CODER_AGENT_DEVCONTAINERS_ENABLE environment variable or use the --devcontainers-enable flagon the agentto enablethe container API.",
+Message:"The Agent dev containers feature is not enabled.",
+Detail:"Set the CODER_AGENT_DEVCONTAINERS_ENABLE environment variable or use the --devcontainers-enable flag to enablethis feature.",
62
})
63
64
}