Skip to content

Commit

Permalink
fixup: sync protobuf and fix Clang Tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
eugeneo committed Aug 11, 2023
1 parent 2a597b3 commit 6f39005
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/proto/grpc/testing/messages.proto
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ message LoadBalancerStatsResponse {
message RpcMetadata {
// metadata values for each rpc for the keys specified in
// LoadBalancerStatsRequest.metadata_keys.
// metadata keys and values are returned exactly as was recieved
// metadata keys and values are returned exactly as was received
// from the server.
repeated MetadataEntry metadata = 1;
}
Expand Down
2 changes: 2 additions & 0 deletions src/proto/grpc/testing/test.proto
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ import "src/proto/grpc/testing/messages.proto";

package grpc.testing;

option java_package = "io.grpc.testing.integration";

// A simple service to test the various types of RPCs and experiment with
// performance with various types of payload.
service TestService {
Expand Down
4 changes: 2 additions & 2 deletions test/cpp/interop/pre_stop_hook_server.cc
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ bool PreStopHookServerManager::ExpectRequests(size_t expected_requests_count,
}

void PreStopHookServerManager::PreStopHookServerDeleter::operator()(
PreStopHookServer* holder) {
delete holder;
PreStopHookServer* server) {
delete server;
}

} // namespace testing
Expand Down

0 comments on commit 6f39005

Please sign in to comment.