Nadav Samet

Results 118 comments of Nadav Samet

Since the test fail for Scala 0.10.x and succeed for the newest ScalaPB (to be released), we need to add a mechanism to enable tests that only run for some...

Schemas in Spark must be known ahead of time. A possible workaround would be to set a limit on the recursion depth when generating a schema. Would that be useful?

FWIW, for a single level, you could do something like this: ``` message Person { ... } message PersonWithOtherPerson { optional Person main = 1; optional Person other_person = 2;...

Hi @anjshrg , the issue is still not resolved. PRs will be welcome!

@prettynatty thanks for the detailed report. I was able to reproduce this bug. Can you try upgrading to sbt-scalapb 0.5.17 in `actor-server/project/plugins.sbt`. I submitted trueaccord/scalapb@a9459ba4c97dc166cb3c7e7fe4a272d4aa62b48d which makes the input and...

@prettynatty which protoc version you use? Can you send a minimal example on how to reproduce? To get a JVM stack trace, hit Ctrl \

When using scalapbc it's up to you to provide scalapb.proto and wrappers.proto to protoc. You need to make those files available somewhere in the file system and pass that location...

Thanks @rdsarvar , the goal of this parser is to be consistent with the [protobuf json spec](https://developers.google.com/protocol-buffers/docs/proto3#json). Since OpenRTB uses protobuf, do you know why their json output is inconsistent...