Sjoerd Mulder
Sjoerd Mulder
It was attached to the releases of previous versions. Any reasons not released anymore? Would be convenient to just download the jar :smile:
I don't see that the `explode` definitions have any connection in the code currently. Is it possible to add this support specified here: https://swagger.io/docs/specification/serialization/#query What would be nice that the...
Running the following example, with "-Xmx512m" will cause a `java.lang.OutOfMemoryError: Java heap space` within a minute: ``` import akka.actor.ActorSystem import akka.stream.ActorMaterializer import akka.stream.scaladsl.{Sink, Source} import com.crobox.clickhouse.ClickhouseClient import com.typesafe.config.ConfigFactory import scala.concurrent.Future...
having the following test-case you could expect that this tests passes: ``` val first = (2 === 2).and(3 === 3) val second = (2 === 2).and(3 === 3) first should...
Akka HTTP version 10.0.1 Somehow we have received a ``` Caused by: akka.http.impl.engine.client.OutgoingConnectionBlueprint$UnexpectedConnectionClosureException: The http server closed the connection unexpectedly before delivering responses for 1 outstanding requests at akka.http.impl.engine.client.OutgoingConnectionBlueprint$$anonfun$apply$2.apply(OutgoingConnectionBlueprint.scala:127) at...
The salt is already incorporated inside the hash field, so there is no need to store this in the collection as an extra field: When authenticating it is not using...
Currently it seems that the `ConsulHttpClient.getService` method uses the **Catalog** https://www.consul.io/api/catalog.html#list-nodes-for-service to get all the endpoints for a service; but if a certain endpoint is considered unhealthy (for example since...
Having the example new ServiceBroker and immediately call withService then the `selectConnection` is called on the LoadBalancerActor before the connection providers are added causing an `ServiceUnavailableException` exception Example: ````scala val...