adyang

Results 9 issues of adyang

### Background Currently, we are able to implement [Mutual TLS Authentication (mTLS)](https://en.wikipedia.org/wiki/Mutual_authentication#mTLS) via configuring the various backends (e.g. Jetty). However, once authenticated, we are not able to utilise http4k (E.g....

feature request

Currently, `Assert.contains` only accepts a single element and for multiple elements we have `Assert.containsAll(vararg elements: Any?)`. `containsAll` is also able to accept a single element: ```kotlin assertThat(listOf("one", "two")).containsAll("one") ``` It...

Currently, `containsExactly` only works on List Assertion: ```kotlin val list = listOf("one", "two", "three") assertThat(list).containsExactly("one", "two", "three") ``` It does not compile if used on an Iterable (which seems inconsistent,...

Currently, extracting only supports 3 arguments max: ```kotlin assertThat(users) .extracting(User::name, User::email, User::password) .containsExactly( Triple("one", "[email protected]", "onePassword"), Triple("two", "[email protected]", "twoPassword"), ) ``` It seems like this is due to Kotlin's generic...

When deploying ambari, script was stuck at install-ambari-components.sh On logging into the UI and checking the error, the main problem seems to be that the NameNode (of the master instance)...

Hi Team, Given that `hashicorp/tap/terraform` is already installed, creating a Brewfile at `/tmp/Brewfile` with the following contents: ``` brew "hashicorp/tap/terraform" ``` and running `brew bundle --file=/tmp/Brewfile --verbose` results in the...

Hi, I am not sure if this is intentional or by mistake, but it seems that the names of the releases have changed from `adopt-openjdk-11.0.6+10` to `adoptopenjdk-11.0.6+10`. Also it seems...

…urable. I had an issue where the test suite was not working because my server took more than 2 seconds to start. I investigated and saw that it is possible...

Hi Team, When an influxdb-java client is created and batch is enabled, it prevents the application from exiting normally due to the use of a default non-daemon thread pool. This...