File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -334,7 +334,7 @@ class ValueManager {
334
334
return nested_message->ParsePartialFromString (string);
335
335
},
336
336
[nested_message](const absl::Cord& cord) -> bool {
337
- return nested_message->ParsePartialFromCord (cord);
337
+ return nested_message->ParsePartialFromString (cord);
338
338
}),
339
339
cel::well_known_types::AsVariant (payload));
340
340
if (!ok) {
@@ -578,7 +578,7 @@ class ValueManager {
578
578
}
579
579
auto * value = google::protobuf::Arena::Create<T>(arena_);
580
580
absl::Cord serialized;
581
- if (!message->SerializeToCord (&serialized)) {
581
+ if (!message->SerializeToString (&serialized)) {
582
582
return CreateErrorValue (
583
583
arena_, absl::UnknownError (
584
584
absl::StrCat (" failed to serialize dynamic message: " ,
You can’t perform that action at this time.
0 commit comments