refactor(server): upgrade command to more human friendly (#10858)

# Introduction
Refactored the upgrade command to be more intuitive to anyone wanting to
add a command to the next relase upgrade instance

Also updated the upgrade command for the next 0.44 release
This commit is contained in:
Paul Rastoin
2025-03-13 16:48:58 +01:00
committed by GitHub
parent 93f70f8457
commit 37afb38479
6 changed files with 80 additions and 30 deletions

View File

@ -177,5 +177,5 @@ export abstract class ActiveOrSuspendedWorkspacesMigrationCommandRunner<
);
}
protected abstract runOnWorkspace(args: RunOnWorkspaceArgs): Promise<void>;
public abstract runOnWorkspace(args: RunOnWorkspaceArgs): Promise<void>;
}