grpc 1.9.0.pre3 → 1.9.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of grpc might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 42b494831008d6915361053c5d39fa06f4c274daa76376ed1d73994ba56a8ed1
4
- data.tar.gz: 59c61af48ea465e644657e57ff7f8f01ed18ab597f84542add663891e88d22a5
3
+ metadata.gz: 074e777e8c914a93e9fd980f4d60ccbdc8c7d14af747df56a649cd2a4d5130bb
4
+ data.tar.gz: b8af869d4dc965c7a550406f53cd7c783d5ea4a61a187ed33f5d72a7c685eb5a
5
5
  SHA512:
6
- metadata.gz: 3787efa86a57047f1cc1c2c39539c580ee191157eb3ab5d3024abfeb8a7af0ac25100d402f09ef41702b885df95bd684389f4ea14ce59abdc22bce9e48b32524
7
- data.tar.gz: 135ff4dbbef3ffd794266da6852acac137f1e2e4de06b438dfa7ff547cbf8c5802da3d262b1a9ee496bbc95e3ec738867bf2cae2fe978c67dac2ab19c1810b9b
6
+ metadata.gz: fd6c31b1620b5a9aad8ac0cc98bfe83925e44d1125423ba44731f8b820faa1519d535e33a669ea080b4cf5414db25c02e25d178c62ce59c1de0aa47e7df8179f
7
+ data.tar.gz: 7bfc533908831470b38d150e76cc6766ffb939e340e73486315b56288414854234b25d93109908f1419c366a3b5ead047174356c9ff594f5510c03ba13469ffd
data/Makefile CHANGED
@@ -418,9 +418,9 @@ E = @echo
418
418
  Q = @
419
419
  endif
420
420
 
421
- CORE_VERSION = 5.0.0-pre3
422
- CPP_VERSION = 1.9.0-pre3
423
- CSHARP_VERSION = 1.9.0-pre3
421
+ CORE_VERSION = 5.0.0
422
+ CPP_VERSION = 1.9.1
423
+ CSHARP_VERSION = 1.9.1
424
424
 
425
425
  CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) $(addprefix -D, $(DEFINES))
426
426
  CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS)
@@ -1095,6 +1095,7 @@ static void pick_callback_done_locked(void* arg, grpc_error* error) {
1095
1095
  chand, calld);
1096
1096
  }
1097
1097
  async_pick_done_locked(elem, GRPC_ERROR_REF(error));
1098
+ GRPC_CALL_STACK_UNREF(calld->owning_call, "pick_callback");
1098
1099
  }
1099
1100
 
1100
1101
  // Takes a ref to chand->lb_policy and calls grpc_lb_policy_pick_locked().
@@ -1134,6 +1135,7 @@ static bool pick_callback_start_locked(grpc_call_element* elem) {
1134
1135
  GRPC_CLOSURE_INIT(&calld->lb_pick_closure, pick_callback_done_locked, elem,
1135
1136
  grpc_combiner_scheduler(chand->combiner));
1136
1137
  calld->pick.on_complete = &calld->lb_pick_closure;
1138
+ GRPC_CALL_STACK_REF(calld->owning_call, "pick_callback");
1137
1139
  const bool pick_done =
1138
1140
  grpc_lb_policy_pick_locked(chand->lb_policy, &calld->pick);
1139
1141
  if (pick_done) {
@@ -1142,6 +1144,7 @@ static bool pick_callback_start_locked(grpc_call_element* elem) {
1142
1144
  gpr_log(GPR_DEBUG, "chand=%p calld=%p: pick completed synchronously",
1143
1145
  chand, calld);
1144
1146
  }
1147
+ GRPC_CALL_STACK_UNREF(calld->owning_call, "pick_callback");
1145
1148
  } else {
1146
1149
  GRPC_CALL_STACK_REF(calld->owning_call, "pick_callback_cancel");
1147
1150
  grpc_call_combiner_set_notify_on_cancel(
@@ -118,6 +118,7 @@ static void on_credentials_metadata(void* arg, grpc_error* input_error) {
118
118
  grpc_transport_stream_op_batch_finish_with_failure(batch, error,
119
119
  calld->call_combiner);
120
120
  }
121
+ GRPC_CALL_STACK_UNREF(calld->owning_call, "get_request_metadata");
121
122
  }
122
123
 
123
124
  void grpc_auth_metadata_context_build(
@@ -208,7 +209,7 @@ static void send_security_metadata(grpc_call_element* elem,
208
209
  chand->auth_context, &calld->auth_md_context);
209
210
 
210
211
  GPR_ASSERT(calld->pollent != nullptr);
211
-
212
+ GRPC_CALL_STACK_REF(calld->owning_call, "get_request_metadata");
212
213
  GRPC_CLOSURE_INIT(&calld->async_result_closure, on_credentials_metadata,
213
214
  batch, grpc_schedule_on_exec_ctx);
214
215
  grpc_error* error = GRPC_ERROR_NONE;
@@ -250,6 +251,7 @@ static void on_host_checked(void* arg, grpc_error* error) {
250
251
  calld->call_combiner);
251
252
  gpr_free(error_msg);
252
253
  }
254
+ GRPC_CALL_STACK_UNREF(calld->owning_call, "check_call_host");
253
255
  }
254
256
 
255
257
  static void cancel_check_call_host(void* arg, grpc_error* error) {
@@ -312,6 +314,7 @@ static void auth_start_transport_stream_op_batch(
312
314
  }
313
315
  if (calld->have_host) {
314
316
  batch->handler_private.extra_arg = elem;
317
+ GRPC_CALL_STACK_REF(calld->owning_call, "check_call_host");
315
318
  GRPC_CLOSURE_INIT(&calld->async_result_closure, on_host_checked, batch,
316
319
  grpc_schedule_on_exec_ctx);
317
320
  char* call_host = grpc_slice_to_c_string(calld->host);
@@ -21,6 +21,6 @@
21
21
 
22
22
  #include <grpc/grpc.h>
23
23
 
24
- const char* grpc_version_string(void) { return "5.0.0-pre3"; }
24
+ const char* grpc_version_string(void) { return "5.0.0"; }
25
25
 
26
26
  const char* grpc_g_stands_for(void) { return "glossy"; }
@@ -14,5 +14,5 @@
14
14
 
15
15
  # GRPC contains the General RPC module.
16
16
  module GRPC
17
- VERSION = '1.9.0.pre3'
17
+ VERSION = '1.9.1'
18
18
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grpc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0.pre3
4
+ version: 1.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - gRPC Authors
8
8
  autorequire:
9
9
  bindir: src/ruby/bin
10
10
  cert_chain: []
11
- date: 2018-01-29 00:00:00.000000000 Z
11
+ date: 2018-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -1430,12 +1430,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
1430
1430
  version: 2.0.0
1431
1431
  required_rubygems_version: !ruby/object:Gem::Requirement
1432
1432
  requirements:
1433
- - - ">"
1433
+ - - ">="
1434
1434
  - !ruby/object:Gem::Version
1435
- version: 1.3.1
1435
+ version: '0'
1436
1436
  requirements: []
1437
1437
  rubyforge_project:
1438
- rubygems_version: 2.7.4
1438
+ rubygems_version: 2.7.5
1439
1439
  signing_key:
1440
1440
  specification_version: 4
1441
1441
  summary: GRPC system in Ruby