Aliaksandr Siamionau
Aliaksandr Siamionau
@fomkin up to you I guess. Currently korolev-server does push I believe and nothing can stop it. But maybe it's not an issue.
Having this issue as well. It does happen on one of the apps and doesn't on others with exact same plugin setup. Very weird.
@travisbrown Circe currently outputs `null`s for `None` values with `import io.circe.generic.auto._`. Does this relate to this report?
@travisbrown be kind to address the question above, please. We would like to track this issue but are not 100% sure it's about `null`s for `None` fields. Thank you!
@jeremyrsmith thanks, it's great!
Circe `0.8`/`0.9` workaround: ```scala implicit def decodeOptionOption[T](implicit decodeOpt: Decoder[Option[T]]): Decoder[Option[Option[T]]] = Decoder.withReattempt { c => if (c.succeeded) c.as[Option[T]].map(Some(_)) else Right(None) } ```
Pretty major issue from 2017. Any plans of fixing it? Or at least un-deprecate `countDistinct`.
Support downgrading to 1.1.2 as well.
Created a PR #587
This doesn't work for JDK 11 and requires adding jaxb-api dependency manually.