File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed
components/server/src/workspace Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -879,16 +879,11 @@ export class WorkspaceStarter {
879
879
}
880
880
}
881
881
882
- let workspaceClass = "" ;
883
- let classesEnabled = await getExperimentsClientForBackend ( ) . getValueAsync ( "workspace_classes" , false , {
884
- user,
885
- teams : userTeams ,
886
- billingTier,
887
- } ) ;
888
882
const usageAttributionId = await this . userService . getWorkspaceUsageAttributionId ( user , workspace . projectId ) ;
889
883
const billingMode = await this . billingModes . getBillingMode ( usageAttributionId , new Date ( ) ) ;
890
884
891
- if ( classesEnabled || BillingMode . canSetWorkspaceClass ( billingMode ) ) {
885
+ let workspaceClass = "" ;
886
+ if ( BillingMode . canSetWorkspaceClass ( billingMode ) ) {
892
887
// this is either the first time we start the workspace or the workspace was started
893
888
// before workspace classes and does not have a class yet
894
889
workspaceClass = await getWorkspaceClassForInstance (
You can’t perform that action at this time.
0 commit comments