File tree Expand file tree Collapse file tree 5 files changed +231
-411
lines changed Expand file tree Collapse file tree 5 files changed +231
-411
lines changed Original file line number Diff line number Diff line change @@ -1533,7 +1533,6 @@ export class WorkspaceStarter {
1533
1533
startWorkspaceSpecIDEImage . setSupervisorRef ( ideConfig . supervisorImage ) ;
1534
1534
spec . setIdeImage ( startWorkspaceSpecIDEImage ) ;
1535
1535
spec . setIdeImageLayersList ( ideConfig . ideImageLayers ) ;
1536
- spec . setDeprecatedIdeImage ( ideConfig . webImage ) ;
1537
1536
spec . setWorkspaceImage ( instance . workspaceImage ) ;
1538
1537
spec . setWorkspaceLocation ( workspace . config . workspaceLocation || checkoutLocation ) ;
1539
1538
spec . setFeatureFlagsList ( this . toWorkspaceFeatureFlags ( featureFlags ) ) ;
Original file line number Diff line number Diff line change @@ -328,11 +328,11 @@ message IDEImage {
328
328
// web_ref is a reference to an OCI image used for serving the web-based IDE
329
329
string web_ref = 1 ;
330
330
// DEPRECATED desktop_ref is an optional reference to an OCI image used for serving desktop IDEs
331
- string desktop_ref = 2 ;
331
+ reserved 2 ;
332
332
// supervisor_ref is a reference to an OCI image used as supervisor
333
333
string supervisor_ref = 3 ;
334
334
// DEPRECATED desktop_plugin_ref is an optional reference to an OCI image used for serving desktop IDE plugin
335
- string desktop_plugin_ref = 4 ;
335
+ reserved 4 ;
336
336
}
337
337
338
338
// WorkspaceSpec is the specification of a workspace at runtime
@@ -342,7 +342,7 @@ message WorkspaceSpec {
342
342
343
343
// deprecated_ide_image is a field present for backwards compatibility and the same
344
344
// as IDEImage.web_ref. If both fields are present, IDEImage.web_ref takes precedence.
345
- string deprecated_ide_image = 2 ;
345
+ reserved 2 ;
346
346
347
347
// headless marks this workspace a headless one - headless workspaces are not intended for users but for automation
348
348
bool headless = 3 ;
@@ -559,7 +559,7 @@ message StartWorkspaceSpec {
559
559
560
560
// deprecated_ide_image is a field present for backwards compatibility and the same
561
561
// as IDEImage.web_ref. If both fields are present, IDEImage.web_ref takes precedence.
562
- string deprecated_ide_image = 2 ;
562
+ reserved 2 ;
563
563
564
564
// feature_flags provide a means for starting variants of workspaces (e.g. a privileged one)
565
565
repeated WorkspaceFeatureFlag feature_flags = 3 ;
You can’t perform that action at this time.
0 commit comments