You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ScalaPB has a special quirky feature which is that a protobuf oneof with the name sealed_[name] will generate a sealed ADT (docs: https://scalapb.github.io/docs/sealed-oneofs/) however that generates types that the SDK serialization logic AnySupport doesn't expect.
Doesn't seem very complicated to support, the core of the problem is that the GeneratedMessageCompanion cannot be found the usual way for such generated sealed Scala ADTs.
The text was updated successfully, but these errors were encountered:
ScalaPB has a special quirky feature which is that a protobuf
oneof
with the namesealed_[name]
will generate a sealed ADT (docs: https://scalapb.github.io/docs/sealed-oneofs/) however that generates types that the SDK serialization logic AnySupport doesn't expect.Doesn't seem very complicated to support, the core of the problem is that the
GeneratedMessageCompanion
cannot be found the usual way for such generated sealed Scala ADTs.The text was updated successfully, but these errors were encountered: