Brian Clozel
Brian Clozel
Sorry but I still can't reproduce the problem. After: * following all the steps described in the readme * following all the additional steps here * authenticating with the API...
@saulgiordani can you create a new issue in the Spring Framework project with a sample application reproducing the problem? Thanks!
Why not auto-configure HandlerMethodArgumentResolver beans on that component in the existing configuration? To me customizers are useful when lots of options exist and when applications want to contribute several.
The `org.springframework.graphql.execution.GraphQlSource.Builder` not only configures many things, but also is the gateway to configuring the GraphQL engine itself. The `AnnotatedControllerConfigurer` has less options and in this case, the `HandlerMethodArgumentResolver` are...
It seems there are two aspects for this problem here: 1. creating and installing TLS certificates in a production application, using production domains 2. helping developers setting up TLS locally...
Indeed, this has been asked a few times and so far the team pointed at a custom `HealthAggregator` or health groups as the preferred solutions for this. I understand this...
@jaredpetersen thanks for your reply! Point 4) is still key - in your case, how is the platform responding to an `/actuator/health` endpoint being "DOWN" in general? Also, how does...
@voliveirajr I think your flows use case points to [health groups](https://docs.spring.io/spring-boot/docs/current/reference/html/actuator.html#actuator.endpoints.health.groups), which is already implemented in Spring Boot. You can point each client to a different health group. I don't...
Since this issue was created, I think many platforms are now considering the liveness and readiness aspects of an application and use separate endpoints. The root endpoint and aggregated status...
Sorry for the delayed response. I had a look into this and I'll share my findings here. First `@SchemaMapping` at the type level is already supported for the `typeName` field...