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 +4 -4
- data/.github/workflows/ruby.yml +1 -1
- data/ext/iodine/fio.c +1 -1
- data/ext/iodine/iodine_http.c +1 -1
- data/lib/iodine/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95f2aaf4cba29fd196558c215f6899964057cfb20520a4bd121e27bf4205520c
|
4
|
+
data.tar.gz: 2861b7b910a9094ab2500f98964dac4551ac0028845c72522ccfc909570595ef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4cd6f2e365dc5944089bff7ca27f75b5a7912bbf7263895f75c0c6a493f225046fd86543b819646eabd5de0c60fc7f0c66e682ec760919b7faedbe9a30ef479f
|
7
|
+
data.tar.gz: b50eb0aef891a06d9d649120417010b418cdd31994108b3e09dc0062c5ef623f69c9111fcdd66c063948d317711a6cce348c7ab52e35ba1dee5d43222f30cc6b
|
data/.github/workflows/ruby.yml
CHANGED
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
|
|
data/ext/iodine/iodine_http.c
CHANGED
@@ -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;
|
data/lib/iodine/version.rb
CHANGED
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.
|
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-
|
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.
|
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:
|