You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.Errorf("error marshalling policy to json, err is: %v", err)
113
+
returnnil, fmt.Errorf("error marshalling policy to json, err is: %w", err)
102
114
}
103
115
104
-
returnrawPolicy
116
+
returnrawPolicy, nil
105
117
}
106
118
107
119
// IPConfigsRequestHandlerWrapper is the middleware function for handling SWIFT v2 IP configs requests for AKS-SWIFT. This function wrapped the default SWIFT request
@@ -136,7 +148,7 @@ func (k *K8sSWIFTv2Middleware) IPConfigsRequestHandlerWrapper(defaultHandler, fa
136
148
}
137
149
138
150
// GetDefaultDenyBool takes in mtpnc and returns the value of defaultDenyACLBool from it
0 commit comments