Skip to content

Fix PAPI conversion #18722

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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