pull/14308/head
Shohei Kamimori 7 years ago
parent 73a50abd1d
commit 35367cc3ed
  1. 2
      doc/compression.md
  2. 2
      src/core/lib/gpr/env.h
  3. 2
      src/csharp/Grpc.Core/Internal/NativeExtension.cs
  4. 2
      src/ruby/bin/apis/pubsub_demo.rb
  5. 4
      src/ruby/ext/grpc/rb_channel.c
  6. 2
      src/ruby/pb/test/client.rb
  7. 2
      src/ruby/pb/test/server.rb

@ -63,7 +63,7 @@ header received from the client), it SHALL send the message uncompressed.
If the user (through the previously described mechanisms) requests to disable
compression the next message MUST be sent uncompressed. This is instrumental in
preventing BEAST/CRIME attacks. This applies to both the the unary and streaming
preventing BEAST/CRIME attacks. This applies to both the unary and streaming
cases.
### Compression Levels and Algorithms

@ -29,7 +29,7 @@
variable exists). */
char* gpr_getenv(const char* name);
/* Sets the the environment with the specified name to the specified value. */
/* Sets the environment with the specified name to the specified value. */
void gpr_setenv(const char* name, const char* value);
/* This is a version of gpr_getenv that does not produce any output if it has to

@ -39,7 +39,7 @@ namespace Grpc.Core.Internal
{
this.nativeMethods = new NativeMethods(Load());
// Redirect the the native logs as the very first thing after loading the native extension
// Redirect the native logs as the very first thing after loading the native extension
// to make sure we don't lose any logs.
NativeLogRedirector.Redirect(this.nativeMethods);

@ -193,7 +193,7 @@ end
Args = Struct.new(:host, :port, :action, :project_id, :topic_name,
:sub_name)
# validates the the command line options, returning them as an Arg.
# validates the command line options, returning them as an Arg.
def parse_args
args = Args.new('pubsub-staging.googleapis.com',
443, 'list_some_topics', 'stoked-keyword-656')

@ -362,8 +362,8 @@ static void wait_for_watch_state_op_complete_unblocking_func(void* arg) {
/* Wait until the channel's connectivity state becomes different from
* "last_state", or "deadline" expires.
* Returns true if the the channel's connectivity state becomes
* different from "last_state" within "deadline".
* Returns true if the channel's connectivity state becomes different
* from "last_state" within "deadline".
* Returns false if "deadline" expires before the channel's connectivity
* state changes from "last_state".
* */

@ -707,7 +707,7 @@ Args = Struct.new(:default_service_account, :host, :host_override,
:oauth_scope, :port, :secure, :test_case,
:use_test_ca)
# validates the the command line options, returning them as a Hash.
# validates the command line options, returning them as a Hash.
def parse_args
args = Args.new
args.host_override = 'foo.test.google.fr'

@ -211,7 +211,7 @@ class TestTarget < Grpc::Testing::TestService::Service
end
end
# validates the the command line options, returning them as a Hash.
# validates the command line options, returning them as a Hash.
def parse_options
options = {
'port' => nil,

Loading…
Cancel
Save