I keep getting the following stack trace and am not sure what it means.
Caused by: com.google.protobuf.InvalidProtocolBufferException: Protocol message end-grou
Groups in protobuf are written as a start/end numeric pair - kinda like how <foo>
needs a </foo>
, but in a different format. Essentially it is complaining that it found a </bar>
instead (just: the xml is only a metaphor). The details are in the encoding specification, but the long and short is that one of:
If I had to guess, the data has been damaged in transit - because that is so frighteningly common