Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
xzhseh committed Oct 31, 2023
1 parent 828b46d commit ffb9e87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connector/src/parser/protobuf/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ pub fn from_protobuf_value(
let Some(ScalarImpl::Bytea(payload)) =
from_protobuf_value(&payload_field_desc, &payload, descriptor_pool)?
else {
let err_msg = format!("Expected ScalarImpl::Bytea for payload");
let err_msg = "Expected ScalarImpl::Bytea for payload".to_string();
return Err(RwError::from(ProtocolError(err_msg)));
};

Expand Down

0 comments on commit ffb9e87

Please sign in to comment.