(workspace: Workspace)
| 180 | } |
| 181 | |
| 182 | async function upgradeWorkspaceV010Pre(workspace: Workspace) { |
| 183 | logger().info( |
| 184 | { |
| 185 | workspaceName: workspace.name, |
| 186 | }, |
| 187 | "Performing pre-upgrade steps for workspace", |
| 188 | ); |
| 189 | await terminateComputePropertiesWorkflow({ workspaceId: workspace.id }); |
| 190 | } |
| 191 | |
| 192 | export async function upgradeV010Pre() { |
| 193 | logger().info("Performing pre-upgrade steps for v0.10.0"); |
nothing calls this directly
no test coverage detected