Skip to content

Commit

Permalink
mobile: Prettier printing of native filter parse error (envoyproxy#33371
Browse files Browse the repository at this point in the history
)

Signed-off-by: Ali Beyad <abeyad@google.com>
  • Loading branch information
abeyad committed Apr 6, 2024
1 parent 62403c1 commit f580ed0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile/library/cc/engine_builder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ std::unique_ptr<envoy::config::bootstrap::v3::Bootstrap> EngineBuilder::generate
Protobuf::TextFormat::ParseFromString((*filter).typed_config_,
native_filter->mutable_typed_config());
RELEASE_ASSERT(!native_filter->typed_config().DebugString().empty(),
"Failed to parse" + (*filter).typed_config_);
"Failed to parse: " + (*filter).typed_config_);
#else
IS_ENVOY_BUG("Native filter support not implemented for this build");
#endif // !ENVOY_ENABLE_FULL_PROTOS
Expand Down

0 comments on commit f580ed0

Please sign in to comment.