Peter Luttrell
Peter Luttrell
If I use httpie to make a call that returns cookies to a localhost address, such as: ``` http --session=./session.json POST http://localhost:9081/cookieTest ``` which sends back a header like this:...
### Summary It would be great if additional headers were displayed with standard ones.
The current implementation provides a way to add new tags or to replace the entire interceptor bean to customize metrics. The former is a great way to add new static...
Please consider adding properties that users can easily customize for the metric tag names: `service`, `method`, `method.type`, `status.code`.
Please consider adding a property to enable/disable each of the three metric's that are generated for both client & server support. Users might not find utility in one and thus...
How would you configure the starter to work with OAuth2 JWTs using shared signing keys in a reactive gRPC service? We see [this example](https://github.com/yidongnan/grpc-spring-boot-starter/blob/master/examples/security-grpc-bearerAuth-server/src/main/java/net/devh/boot/grpc/examples/security/server/SecurityConfiguration.java), but it's non-reactive, uses OpenId and...
The [AuthenticatingServerInterceptor](https://github.com/yidongnan/grpc-spring-boot-starter/blob/master/grpc-server-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/server/security/interceptors/AuthenticatingServerInterceptor.java) uses the `SecurityContextHolder.getContext().setAuthentication(authentication)` which won't work for Reactive Spring Security. We believe that `ReactiveSecurityContextHolder` should be used instead as shown in [this example](https://docs.spring.io/spring-security/site/docs/current/reference/htmlsingle/#jc-erms). Perhaps one option might be...
**Description** The last log line shows up right after the test output for server shutdown log messages, whereas all other log lines are suppressed. I've noticed this with two different...
We are using the SQS messaging features in Spring Cloud AWS (version `1.2.1` and `2.0.0 M4`). We had a production outage because the service(s) that support the `@SqsListener` annotation simply...
One HA best practice when deploying at AWS is to run clusters across AZs. Kops currently supports this by manually passing the AZs you want to use through the `--zones`...