Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,17 @@ private static ProtoSchema convertInternal(
enumTypes.add(enumFullName);
}
}
// The protobuf payload will be decoded as proto2 on the server side. The schema is also
// specified as proto2. Hence we must clear proto3-only features. This works since proto2 and
// proto3 are binary-compatible.
if (resultField.hasProto3Optional()) {
Comment thread
agrawal-siddharth marked this conversation as resolved.
// Clear proto3-only features
resultField.clearProto3Optional();
}
if (resultField.hasOneofIndex()) {
// Clear proto3-only features
resultField.clearOneofIndex();
}
resultProto.addField(resultField);
}
structTypes.add(protoFullName);
Expand Down