We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2c6b12 commit 90beea9Copy full SHA for 90beea9
grpc/src/ugrpc/status_codes.cpp
@@ -85,7 +85,7 @@ grpc::StatusCode Parse(std::string_view value, To<grpc::StatusCode>) {
85
const auto result = ugrpc::kStatusCodesMap.TryFind(value);
86
if (!result) {
87
throw std::runtime_error(fmt::format(
88
- "Invalid value of grpc::StatusCode: '{}' is not one of {}", value, ugrpc::kStatusCodesMap.Describe()
+ "Invalid value of grpc::StatusCode: '{}' is not one of {}", value, ugrpc::kStatusCodesMap.DescribeSecond()
89
));
90
}
91
return *result;
0 commit comments