Skip to content

Commit

Permalink
F5Networks#3679 hide certificate, key and chain ca in AS3 response
Browse files Browse the repository at this point in the history
  • Loading branch information
vidyasagar-m committed Jan 15, 2025
1 parent ff9b5dd commit 46aef69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controller/postManager.go
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ func (postMgr *PostManager) getBigipRegKeyURL() string {

func (postMgr *PostManager) logAS3Response(responseMap map[string]interface{}) {
// removing the certificates/privateKey from response log
if declaration, ok := (responseMap["declaration"]).([]interface{}); ok {
if declaration, ok := (responseMap["declaration"]).(map[string]interface{}); ok {
for _, value := range declaration {
if tenantMap, ok := value.(map[string]interface{}); ok {
for _, value2 := range tenantMap {
Expand Down

0 comments on commit 46aef69

Please sign in to comment.