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

Fix dp to cp flow for normal APIs #1211

Merged
merged 1 commit into from
Oct 9, 2024
Merged
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
4 changes: 3 additions & 1 deletion apim-apk-agent/pkg/managementserver/rest_server.go
Original file line number Diff line number Diff line change
@@ -209,9 +209,11 @@ func createAPIYaml(apiCPEvent *APICPEvent) (string, string) {
"authorizationHeader": authHeader,
"apiKeyHeader": apiKeyHeader,
"scopes": scopes,
"aiConfiguration": aiConfiguration,
},
}
if len(aiConfiguration) > 0 {
data["data"].(map[string]interface{})["aiConfiguration"] = aiConfiguration
}
// TODO when we start to process sandbox we need to have this if condition. For now we remove sandbox endpoint always.
// if apiCPEvent.API.SandEndpoint == "" {
delete(data["data"].(map[string]interface{})["endpointConfig"].(map[string]interface{}), "sandbox_endpoints")