iodine 0.7.50 → 0.7.51

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: 222b90cff0e761d924b2a3f7cba4f8914727cf87619602781a8a6ad3bc824e97
4
- data.tar.gz: 3935cf93e8874392560949a07ad990d94501d4b31ddabb2e825ef3c6cbc41539
3
+ metadata.gz: 95f2aaf4cba29fd196558c215f6899964057cfb20520a4bd121e27bf4205520c
4
+ data.tar.gz: 2861b7b910a9094ab2500f98964dac4551ac0028845c72522ccfc909570595ef
5
5
  SHA512:
6
- metadata.gz: 736cac5605c0234d77390184460acc6771abac50de525ea4df9cc48026e5b58312afc55d336026901373f123fab59d6baa86314cf2d5955da094c1bdc669c4ac
7
- data.tar.gz: 2229bccab50dd9b530338c3c326c6b52f90983e06210c2beb88ecb27dd57a66fcfca005155ae46c35724e938b62e7aceb47cec939d1fe2ea724235fc48816466
6
+ metadata.gz: 4cd6f2e365dc5944089bff7ca27f75b5a7912bbf7263895f75c0c6a493f225046fd86543b819646eabd5de0c60fc7f0c66e682ec760919b7faedbe9a30ef479f
7
+ data.tar.gz: b50eb0aef891a06d9d649120417010b418cdd31994108b3e09dc0062c5ef623f69c9111fcdd66c063948d317711a6cce348c7ab52e35ba1dee5d43222f30cc6b
@@ -20,7 +20,7 @@ jobs:
20
20
  strategy:
21
21
  fail-fast: false
22
22
  matrix:
23
- ruby-version: ['2.3', '2.7', '3.0', '3.2']
23
+ ruby-version: ['2.3', '2.7', '3.0', '3.1', '3.2']
24
24
  os: [ubuntu-latest, macos-latest] # , windows-latest
25
25
  runs-on: ${{ matrix.os }}
26
26
  steps:
data/ext/iodine/fio.c CHANGED
@@ -1025,7 +1025,7 @@ static void fio_defer_thread_wait(void) {
1025
1025
  if (fio_defer_has_queue())
1026
1026
  pthread_setspecific(static_throttle_key, (void *)1);
1027
1027
  else if (static_throttle < FIO_DEFER_THROTTLE_LIMIT)
1028
- pthread_setspecific(static_throttle_key, (void *)(static_throttle << 1));
1028
+ pthread_setspecific(static_throttle_key, (void *)((static_throttle << 1) | 1));
1029
1029
  }
1030
1030
  }
1031
1031
 
@@ -477,7 +477,7 @@ Handling the HTTP response
477
477
  static int for_each_header_data(VALUE key, VALUE val, VALUE h_) {
478
478
  http_s *h = (http_s *)h_;
479
479
  // fprintf(stderr, "For_each - headers\n");
480
- if (TYPE(val) == T_NIL)
480
+ if (TYPE(val) == T_NIL || TYPE(key) == T_NIL)
481
481
  return ST_CONTINUE;
482
482
  if (TYPE(val) == T_ARRAY)
483
483
  goto array_style_multi_value;
@@ -1,3 +1,3 @@
1
1
  module Iodine
2
- VERSION = '0.7.50'.freeze
2
+ VERSION = '0.7.51'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iodine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.50
4
+ version: 0.7.51
5
5
  platform: ruby
6
6
  authors:
7
7
  - Boaz Segev
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-10-29 00:00:00.000000000 Z
11
+ date: 2022-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -246,7 +246,7 @@ licenses:
246
246
  metadata:
247
247
  allowed_push_host: https://rubygems.org
248
248
  post_install_message: |-
249
- Thank you for installing Iodine 0.7.50.
249
+ Thank you for installing Iodine 0.7.51.
250
250
  Remember: if iodine supports your business, it's only fair to give value back (code contributions / donations).
251
251
  rdoc_options: []
252
252
  require_paths: