Skip to content

Fix Missing GUID in CloudController Application Type ( V8) #3552

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 2 commits into from
Jul 21, 2025
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: 2 additions & 0 deletions api/cloudcontroller/ccv3/requester_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ var _ = Describe("shared request helpers", func() {

expectedBody := map[string]interface{}{
"name": "some-app-name",
"guid": "some-app-guid",
"lifecycle": map[string]interface{}{
"type": "buildpack",
"data": map[string]interface{}{
Expand Down Expand Up @@ -489,6 +490,7 @@ var _ = Describe("shared request helpers", func() {

expectedBody := map[string]interface{}{
"name": "some-app-name",
"guid": "some-app-guid",
"lifecycle": map[string]interface{}{
"type": "buildpack",
"data": map[string]interface{}{
Expand Down
1 change: 1 addition & 0 deletions resources/application_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ type ApplicationNameOnly struct {
// MarshalJSON converts an Application into a Cloud Controller Application.
func (a Application) MarshalJSON() ([]byte, error) {
ccApp := ccApplication{
GUID: a.GUID,
Name: a.Name,
Metadata: a.Metadata,
}
Expand Down
Loading