Lukasz Stefaniak
Lukasz Stefaniak
Done here: https://github.com/sclasen/akka-zk-cluster-seed/pull/22
Hmmm, but we don't use any akka-http extensions for spray-json, it is still used directly so that change only adds more dependencies
After release with akka-http it will work correctly using https://github.com/typesafehub/ssl-config/blob/master/ssl-config-core/src/main/scala/com/typesafe/sslconfig/ssl/DefaultHostnameVerifier.scala
Hi @ouven @MasseGuillaume To use akka-viz you don't need to recompile anything, we use runtime weaving, all you need is just add akka-viz jar dependency and make sure you run...
That would work: ``` object Foo { import spray.json._ case class CampKey(value: String) extends AnyVal case class DataPointKey(value: String) extends AnyVal case class DataPointValue(value: String) extends AnyVal type DataMap =...
And you should probably change reads, to get rid of asInstanceOf, and fail with `DeserializationException` using `deserializationError` if value is not JsString.
I don't think there is Cloud Storage emulator available. ``` Available groups for gcloud beta emulators: bigtable *(BETA)* Manage your local Bigtable emulator. datastore *(BETA)* Manage your local datastore emulator....
The same problem happens when using `/queries/%d/run/sql` - it tries to decode JSON but inside there is just a string. `/content_thumbnail/look/X/png` - instead of returning `[]byte` it returns empty string
I used this PR in our forked https://github.com/getsynq/sqlparser-rs and a tool built on top of that, and it works amazingly well. Adding `empty_span()` all over the place is painful initially,...
After working on column-level lineage using sqlparser-rs even more, I think we must add location to every instance of `Ident` and maybe also `ObjectName` as otherwise it is super annoying...