grpc 1.66.0.pre3-x86-linux → 1.66.0.pre5-x86-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7215c4a50070f61cda167877398a0c9a5a1d717e76fadee0199df7e1c9ffac4d
4
- data.tar.gz: e91202f648ff601fac73596184bac23de8c13b7fcf6e463f10248dc8956b2577
3
+ metadata.gz: fe2763cf366ea4047d498d766c72e90225f7e3625243ce1ef011cca3af7e3bef
4
+ data.tar.gz: f33c7e6596fb684d722aa169e75419ed895e7415049459edf5a7a051c4c6ad0c
5
5
  SHA512:
6
- metadata.gz: 617921a1791b7617376ef5ab4ceee38af112f59feaedc5c3de524b9be115fd9e2bf8aaa29f2ce82c6f0d14fd53075cd020889cfb30d2751ec9a49717b7e1c01f
7
- data.tar.gz: 6cc4e64f71a8a72234f0ff90656bdb24c1b8c73933ce7d2f1c03a7f8c3c49ce03054b0bb2488e1dad0d4cfbc22325c786a25f335144d3e258d6176621ae04500
6
+ metadata.gz: b687fe9b51d477738ea43f9fda0450a286901a778ec32c97cd4e81bbfc3e6b4f63147e1c04da143f4012472d6050fff79b898894c6533608cbc47188ae11e59f
7
+ data.tar.gz: c85265c8375d7fb44870c20cec5b69b07df3ed9b10bb15a1989ac77224c6ab4ff1171d1ee7d0c1d8bf21af9c6c883413a4166fc2ee7ec05be3b089cd472b073e
@@ -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
Binary file
Binary file
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: x86-linux
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/3.1/grpc_c.so
261
260
  - src/ruby/lib/grpc/3.2/grpc_c.so
@@ -350,7 +349,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
350
349
  requirements:
351
350
  - - ">="
352
351
  - !ruby/object:Gem::Version
353
- version: '2.7'
352
+ version: '3.0'
354
353
  - - "<"
355
354
  - !ruby/object:Gem::Version
356
355
  version: 3.4.dev
Binary file