This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new add9c10b1b9d Typo fix - "Failed to parse" (#23308)
add9c10b1b9d is described below
commit add9c10b1b9d88e298de3c07b828214c2a69601b
Author: Tom Cunningham <[email protected]>
AuthorDate: Mon May 18 16:04:39 2026 -0400
Typo fix - "Failed to parse" (#23308)
---
.../component/jackson/protobuf/transform/ProtobufSchemaResolver.java | 2 +-
.../component/jackson3/protobuf/transform/ProtobufSchemaResolver.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git
a/components/camel-jackson-protobuf/src/main/java/org/apache/camel/component/jackson/protobuf/transform/ProtobufSchemaResolver.java
b/components/camel-jackson-protobuf/src/main/java/org/apache/camel/component/jackson/protobuf/transform/ProtobufSchemaResolver.java
index a859867346d2..8ffc195733af 100644
---
a/components/camel-jackson-protobuf/src/main/java/org/apache/camel/component/jackson/protobuf/transform/ProtobufSchemaResolver.java
+++
b/components/camel-jackson-protobuf/src/main/java/org/apache/camel/component/jackson/protobuf/transform/ProtobufSchemaResolver.java
@@ -71,7 +71,7 @@ public class ProtobufSchemaResolver implements
SchemaResolver, Processor {
String decodedSchema = URLDecoder.decode(schema,
StandardCharsets.UTF_8);
this.schema = ProtobufSchemaLoader.std.parse(decodedSchema);
} catch (IOException e) {
- throw new RuntimeCamelException("Failed tp parse Protobuf
schema", e);
+ throw new RuntimeCamelException("Failed to parse Protobuf
schema", e);
}
} else {
this.schema = null;
diff --git
a/components/camel-jackson3-protobuf/src/main/java/org/apache/camel/component/jackson3/protobuf/transform/ProtobufSchemaResolver.java
b/components/camel-jackson3-protobuf/src/main/java/org/apache/camel/component/jackson3/protobuf/transform/ProtobufSchemaResolver.java
index 6a5052e92819..3e76fde1ef8c 100644
---
a/components/camel-jackson3-protobuf/src/main/java/org/apache/camel/component/jackson3/protobuf/transform/ProtobufSchemaResolver.java
+++
b/components/camel-jackson3-protobuf/src/main/java/org/apache/camel/component/jackson3/protobuf/transform/ProtobufSchemaResolver.java
@@ -71,7 +71,7 @@ public class ProtobufSchemaResolver implements
SchemaResolver, Processor {
String decodedSchema = URLDecoder.decode(schema,
StandardCharsets.UTF_8);
this.schema = ProtobufSchemaLoader.std.parse(decodedSchema);
} catch (IOException e) {
- throw new RuntimeCamelException("Failed tp parse Protobuf
schema", e);
+ throw new RuntimeCamelException("Failed to parse Protobuf
schema", e);
}
} else {
this.schema = null;