yeshwanth kumar
yeshwanth kumar
There are no samples that can demonstrate how to write tests when using the synchronous-proxy pattern.
Remove `logger.Printf("Fetching JWKS from %s", s.jwksUri)` in [source.go](https://github.com/s12v/go-jwks/blob/master/source.go#L32) This log is being printed as an error log in datadog. While this is not an error.
type Response struct { field1 *string `json:"field1,omitempty"` field2 *string `json:"field2,omitempty"` } I want to indicate that the response will either contain field1 or field2 Sample spec: ``` Response: oneOf: -...