Phil Clay

Results 17 issues of Phil Clay

I'd like an actuator endpoint that shows details of the jars that are included in the spring boot application. Perhaps the endpoint id could be "manifest". Some examples of things...

type: enhancement
status: pending-design-work

Each component in logstash-logback-encoder now keeps track of which subcomponents it started, and only stops those that it started directly. This change allows the lifecycle of subcomponents to be managed...

As discussed [here](https://github.com/logstash/logstash-logback-encoder/issues/264#issuecomment-367213883) and [here](https://github.com/logstash/logstash-logback-encoder/issues/266#issuecomment-417712039), there is a need for logstash-logback-encoder to provide a convenient way to filter/handle types that cannot be serialized by Jackson (e.g. recursion), or that do...

type/enhancement

The [Spring Boot reference guide](https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/) recommends using kebab-case for property names in yaml and properties files for spring boot apps.... > We recommend that, when possible, properties are stored in...

[Lettuce 6.1.0.RELEASE](https://github.com/redis/lettuce/releases/tag/6.1.0.RELEASE) added support for three SSL/TLS verification modes (`SslVerifyMode`): * `NONE` (corresponds with `setVerifyPeer(false)`) * `CA` (only verifies the CA and cert, without verifying the hostname matches) * `FULL`...

type: enhancement

I'd like for the following quote in the [Graceful Shutdown](https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#web.graceful-shutdown) documentation to be clarified... > The exact way in which new requests are not permitted varies depending on the web...

type: documentation

This will avoid connecting/binding to LDAP if, for example, you have defined the ldap provider and some ldap resources in your terraform config, but the ldap resource count is 0...

Fixes Issue #7 Skipping RDNs was causing 'terraform apply' to always attempt to add the RDN attribute for existing entries. And when terraform attempted to add the RDN attribute, the...

Say you have an ldap entry with the following DN: ``` uid=john.doe,ou=People,dc=example,dc=com ``` That entry also has an attribute for the RDN ``` uid=john.doe ``` Due to this code when...

The terraform-provider-ldap crashes if an ldap_object attribute's value is derived from a computed value. For example, I have taken the example given in the README.md, and changed the uid/gid attribute...