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
All of the calls to fromProtoValue and getValAt in PersistentProtocolBufferMap have the use_extensions parameter hard coded to true. This causes runtime failures on schemas that don't use extensions.
To workaround for my specific schema I've had to build with line 393, line 713 and line 718 hardcoded to false. I assume there's a way to detect this but I'm not familiar enough with protobufs yet to implement.
The text was updated successfully, but these errors were encountered:
All of the calls to
fromProtoValue
andgetValAt
inPersistentProtocolBufferMap
have theuse_extensions
parameter hard coded totrue
. This causes runtime failures on schemas that don't use extensions.To workaround for my specific schema I've had to build with line 393, line 713 and line 718 hardcoded to
false
. I assume there's a way to detect this but I'm not familiar enough with protobufs yet to implement.The text was updated successfully, but these errors were encountered: