Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup! chore: allow multiple agent subsystems, add exectrace
  • Loading branch information
deansheather committed Aug 8, 2023
commit 76aed86a1e0e1bab1dbd8b07cf4aa5d4ee36b7e4
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BEGIN;

-- Bring back the subsytem column.
-- Bring back the subsystem column.
ALTER TABLE workspace_agents ADD COLUMN subsystem workspace_agent_subsystem NOT NULL DEFAULT 'none';

-- Update all existing workspace_agents to have subsystem = subsystems[0] unless
Expand Down
2 changes: 1 addition & 1 deletion site/src/testHelpers/entities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ export const MockWorkspaceAgent: TypesGen.WorkspaceAgent = {
logs_overflowed: false,
startup_script_timeout_seconds: 120,
shutdown_script_timeout_seconds: 120,
subsystem: "envbox",
subsystems: ["envbox", "exectrace"],
health: {
healthy: true,
},
Expand Down