File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -2018,6 +2018,8 @@ func convertWorkspaceAgentSubsystem(ss codersdk.AgentSubsystem) database.Workspa
2018
2018
switch ss {
2019
2019
case codersdk .AgentSubsystemEnvbox :
2020
2020
return database .WorkspaceAgentSubsystemEnvbox
2021
+ case codersdk .AgentSubsystemEnvbuilder :
2022
+ return database .WorkspaceAgentSubsystemEnvbuilder
2021
2023
default :
2022
2024
return database .WorkspaceAgentSubsystemNone
2023
2025
}
Original file line number Diff line number Diff line change @@ -683,5 +683,6 @@ type WorkspaceAgentStartupLog struct {
683
683
type AgentSubsystem string
684
684
685
685
const (
686
- AgentSubsystemEnvbox AgentSubsystem = "envbox"
686
+ AgentSubsystemEnvbox AgentSubsystem = "envbox"
687
+ AgentSubsystemEnvbuilder AgentSubsystem = "envbuilder"
687
688
)
You can’t perform that action at this time.
0 commit comments