Andreas Gabor

Results 20 issues of Andreas Gabor

this would be useful to connect to multiple clusters, currently the tool bails out with: [`ERRO[0000] failed to run: localizer instance already running`](https://github.com/jaredallard/localizer/blob/master/internal/server/grpc.go#L54) would it be just a matter of...

kind/feature

The JsonFraming optimization in https://github.com/akka/akka/pull/31380 breaks existing functionality by differently handling the `maximumObjectLength` parameter. E.g. if you set the parameter to fit in the longest element but not the whole...

1 - triaged
bug
t:stream

Similar to https://doc.akka.io/docs/akka-persistence-cassandra/current/cleanup.html

[Akka 2.6.16](https://akka.io/blog/news/2021/08/19/akka-2.6.16-released) introduced a new [Durable State Store](https://doc.akka.io/docs/akka/2.6/typed/durable-state/persistence.html). It's still marked as "may change" and documentation around the implementation is non-existent. Nevertheless it seems it's mostly about implementing [those traits](https://github.com/akka/akka/tree/master/akka-persistence/src/main/scala/akka/persistence/state/scaladsl)....

Is it named differently or has the terms enum search not been added yet? https://www.elastic.co/guide/en/elasticsearch/reference/8.9/search-terms-enum.html

The default encoder for ZonedDateTime uses the [ISO_ZONED_DATE_TIME](https://docs.oracle.com/javase/8/docs/api/java/time/format/DateTimeFormatter.html#ISO_ZONED_DATE_TIME) formatter, which is only "ISO-like" as it > extends the ISO-8601 extended offset date-time format to add the time-zone. The section in...

when defining both, a [privateInterface](https://github.com/k0sproject/k0sctl#spechostsprivateinterface-string-optional-default-) and `--kubelet-extra-args` in [installFlags](https://github.com/k0sproject/k0sctl#spechostsinstallflags-sequence-optional), those two clash. k0sctl writes two separate `--kubelet-extra-args` parameters in `/etc/systemd/system/k0scontroller.service` so it looks like this when e.g. defining an own...

bug

currently to e.g. create a snapshot repository you'd write ```yaml apiVersion: es.eck.github.com/v1alpha1 kind: SnapshotRepository metadata: name: snapshotrepository-sample spec: targetInstance: name: elasticsearch-quickstart body: | { "type": "fs", "settings": { "location": "/tmp/"...

I like to use `dropNullValues` in general but there's an issue when using Maps with optional values. Consider this example of serializing and deserializing a Map[String,Option[Int]]: ```scala import io.circe.Printer import...