Skip to content
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
2 changes: 1 addition & 1 deletion be/src/util/thrift_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ Status deserialize_thrift_msg(const uint8_t* buf, uint32_t* len, bool compact,
try {
deserialized_msg->read(tproto.get());
} catch (std::exception& e) {
return Status::InternalError("Couldn't deserialize thrift msg:\n{}", e.what());
return Status::InternalError<false>("Couldn't deserialize thrift msg:\n{}", e.what());
} catch (...) {
// TODO: Find the right exception for 0 bytes
return Status::InternalError("Unknown exception");
Expand Down