grpc 1.66.0.pre3-x64-mingw32 → 1.66.0.pre5-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c9e2e529f32d17e446f634f24c9c7fb9e77079c622cb2569cef49b49e066c5eb
4
- data.tar.gz: e76b75d6fe643478fc609ca6bbdb00406f602d2b5580e3a7d6517a9b86f1331c
3
+ metadata.gz: 5e6f0ebbc598eb92235807a3a3c1bd3cefae34383365587b49d53ff02ea68cd6
4
+ data.tar.gz: 911acf28d088ec59ec8b57ef6bca18f6f03452419082468be7cc837a6bc28ce0
5
5
  SHA512:
6
- metadata.gz: 7f7295211f51ffb225fc414fc237b5886834b823d088ee8f9afc2509eede6f1848e4a5fad4e219a8009013d7db2afa8e459600d61fd603f2ccfaab7b991afa7d
7
- data.tar.gz: 4771551b17eded82dcd5b8da262a0f09c5a028ac007a81ae37d1f4aeee9b7749f50e554a2eb7a2795bfc2e44ddecb3d79984fe345a56212ce7c5c4e705bbfd03
6
+ metadata.gz: 6f3d6a37bc3ddb0e2a0e33590635709eb79cf4c516d0d6d503983ecb84d08d75123ef74a7971c1b403f3c6c9ef15db44017abbeca325b3c32c87eeac82b2439d
7
+ data.tar.gz: 1b0b2d6c77ab2385fb4871e1e58562bfeecfdde60c0422890a1833e4de3dfd2d77f5691adcbab5f839bd4fa49497728db399291b0eb93cfede30f57c7cc52841
Binary file
@@ -809,7 +809,7 @@ struct call_run_batch_args {
809
809
  };
810
810
 
811
811
  static void cancel_call_unblock_func(void* arg) {
812
- gpr_log(GPR_INFO, "GRPC_RUBY: cancel_call_unblock_func");
812
+ gpr_log(GPR_DEBUG, "GRPC_RUBY: cancel_call_unblock_func");
813
813
  grpc_call* call = (grpc_call*)arg;
814
814
  grpc_call_cancel(call, NULL);
815
815
  }
@@ -112,7 +112,7 @@ static VALUE grpc_rb_call_credentials_callback_rescue(VALUE args,
112
112
  VALUE rb_exception_info =
113
113
  rb_funcall(exception_object, rb_intern("inspect"), 0);
114
114
  (void)args;
115
- gpr_log(GPR_INFO,
115
+ gpr_log(GPR_DEBUG,
116
116
  "GRPC_RUBY call credentials callback failed, exception inspect:|%s| "
117
117
  "backtrace:|%s|",
118
118
  StringValueCStr(rb_exception_info), StringValueCStr(backtrace_str));
@@ -328,7 +328,7 @@ static void grpc_ruby_init_threads() {
328
328
  // in gpr_once_init. In general, it appears to be unsafe to call
329
329
  // into the ruby library while holding a non-ruby mutex, because a gil yield
330
330
  // could end up trying to lock onto that same mutex and deadlocking.
331
- gpr_log(GPR_INFO,
331
+ gpr_log(GPR_DEBUG,
332
332
  "GRPC_RUBY: grpc_ruby_init_threads g_bg_thread_init_done=%d",
333
333
  g_bg_thread_init_done);
334
334
  rb_mutex_lock(g_bg_thread_init_rb_mu);
@@ -68,7 +68,7 @@ static void grpc_rb_server_shutdown_and_notify_internal(grpc_rb_server* server,
68
68
  server->queue, tag, gpr_inf_future(GPR_CLOCK_REALTIME), NULL, NULL);
69
69
  }
70
70
  if (ev.type != GRPC_OP_COMPLETE) {
71
- gpr_log(GPR_INFO,
71
+ gpr_log(GPR_DEBUG,
72
72
  "GRPC_RUBY: bad grpc_server_shutdown_and_notify result:%d",
73
73
  ev.type);
74
74
  }
@@ -192,7 +192,7 @@ struct server_request_call_args {
192
192
 
193
193
  static void shutdown_server_unblock_func(void* arg) {
194
194
  grpc_rb_server* server = (grpc_rb_server*)arg;
195
- gpr_log(GPR_INFO, "GRPC_RUBY: shutdown_server_unblock_func");
195
+ gpr_log(GPR_DEBUG, "GRPC_RUBY: shutdown_server_unblock_func");
196
196
  GRPC_RUBY_ASSERT(server->wrapped != NULL);
197
197
  grpc_event event;
198
198
  void* tag = &event;
@@ -202,7 +202,7 @@ static void shutdown_server_unblock_func(void* arg) {
202
202
  // cancelled all calls.
203
203
  event = grpc_completion_queue_pluck(server->queue, tag,
204
204
  gpr_inf_future(GPR_CLOCK_REALTIME), NULL);
205
- gpr_log(GPR_INFO,
205
+ gpr_log(GPR_DEBUG,
206
206
  "GRPC_RUBY: shutdown_server_unblock_func pluck event.type: %d "
207
207
  "event.success: %d",
208
208
  event.type, event.success);
Binary file
@@ -14,5 +14,5 @@
14
14
 
15
15
  # GRPC contains the General RPC module.
16
16
  module GRPC
17
- VERSION = '1.66.0.pre3'
17
+ VERSION = '1.66.0.pre5'
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.66.0.pre3
4
+ version: 1.66.0.pre5
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - gRPC Authors
8
8
  autorequire:
9
9
  bindir: src/ruby/bin
10
10
  cert_chain: []
11
- date: 2024-08-07 00:00:00.000000000 Z
11
+ date: 2024-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -255,7 +255,6 @@ files:
255
255
  - src/ruby/ext/grpc/rb_xds_server_credentials.c
256
256
  - src/ruby/ext/grpc/rb_xds_server_credentials.h
257
257
  - src/ruby/lib/grpc.rb
258
- - src/ruby/lib/grpc/2.7/grpc_c.so
259
258
  - src/ruby/lib/grpc/3.0/grpc_c.so
260
259
  - src/ruby/lib/grpc/core/status_codes.rb
261
260
  - src/ruby/lib/grpc/core/time_consts.rb
@@ -347,7 +346,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
347
346
  requirements:
348
347
  - - ">="
349
348
  - !ruby/object:Gem::Version
350
- version: '2.7'
349
+ version: '3.0'
351
350
  - - "<"
352
351
  - !ruby/object:Gem::Version
353
352
  version: 3.1.dev
Binary file