Skip to content
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

check for nil operationgroup on product #207

Merged
merged 1 commit into from
Jun 27, 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
8 changes: 5 additions & 3 deletions cmd/registry-connect/discover/apigee/products/products.go
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,11 @@ func addDeployments(ctx context.Context, client apigee.Client, apisByProxyName m

func boundProxies(prod *api.GoogleCloudApigeeV1ApiProduct) []string {
proxies := prod.Proxies
for _, oc := range prod.OperationGroup.OperationConfigs {
if oc.ApiSource != "" {
proxies = append(proxies, oc.ApiSource)
if prod.OperationGroup != nil {
for _, oc := range prod.OperationGroup.OperationConfigs {
if oc.ApiSource != "" {
proxies = append(proxies, oc.ApiSource)
}
}
}
return proxies
Expand Down
Loading