Merge pull request #9823 from mjkim/fix_unkown

Fix typos
pull/11458/head^2
Mehrdad Afshari 8 years ago committed by GitHub
commit c02e39d14c
  1. 3
      src/ruby/lib/grpc/errors.rb
  2. 2
      test/cpp/end2end/async_end2end_test.cc

@ -50,7 +50,8 @@ module GRPC
Struct::Status.new(code, details, @metadata)
end
def self.new_status_exception(code, details = 'unkown cause', metadata = {})
def self.new_status_exception(code, details = 'unknown cause',
metadata = {})
codes = {}
codes[OK] = Ok
codes[CANCELLED] = Cancelled

@ -196,7 +196,7 @@ bool plugin_has_sync_methods(std::unique_ptr<ServerBuilderPlugin>& plugin) {
// This class disables the server builder plugins that may add sync services to
// the server. If there are sync services, UnimplementedRpc test will triger
// the sync unkown rpc routine on the server side, rather than the async one
// the sync unknown rpc routine on the server side, rather than the async one
// that needs to be tested here.
class ServerBuilderSyncPluginDisabler : public ::grpc::ServerBuilderOption {
public:

Loading…
Cancel
Save