Skip to content

Commit

Permalink
fix PAPI conversion (#18722)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexTugarev authored Sep 15, 2023
1 parent 7fa1b2d commit 8d4128b
Show file tree
Hide file tree
Showing 4 changed files with 100 additions and 97 deletions.
2 changes: 1 addition & 1 deletion components/gitpod-protocol/go/gitpod-service.go
Original file line number Diff line number Diff line change
Expand Up @@ -2251,7 +2251,7 @@ type Project struct {
}

type ProjectSettings struct {
EnablePrebuilds bool `json:"enablePrebuilds,omitempty"`
EnablePrebuilds *bool `json:"enablePrebuilds,omitempty"`
UseIncrementalPrebuilds bool `json:"useIncrementalPrebuilds,omitempty"`
UsePersistentVolumeClaim bool `json:"usePersistentVolumeClaim,omitempty"`
KeepOutdatedPrebuildsRunning bool `json:"keepOutdatedPrebuildsRunning,omitempty"`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ message PrebuildSettings {
bool keep_outdated_prebuilds_running = 2;
bool use_previous_prebuilds = 3;
int32 prebuild_every_nth = 4;
bool enable_prebuilds = 5;
optional bool enable_prebuilds = 5;
}

message WorkspaceSettings {
Expand Down
Loading

0 comments on commit 8d4128b

Please sign in to comment.