async-io 1.36.0 → 1.36.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/lib/async/io/unix_endpoint.rb +2 -2
- data/lib/async/io/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +2 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 215ca6215e632b80ab882fda1a6227a4f6a31d08f571db8416d3d51d35719167
|
4
|
+
data.tar.gz: 5ffd6eba1b3608cc2853f8687011b089d0527d9d5735c0efc4866ff89f5fde85
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c51d309448792d8dda414e0f0eaf5fe892dfeabc5c52be6d05e960ff8584791bf4cda1a5663499cea5ba7c92250b096c1f1ef4cd885b7df067cb789f56b9379
|
7
|
+
data.tar.gz: 918d463a06ed0b22fdbc170796b0e5bc0622e7b685f7fbf4a4e1e976d8be47be603f3e6ea8306ad819924cc8d49933216a77a6856b1b11e891c8348d23f6cbad
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
@@ -35,8 +35,8 @@ module Async
|
|
35
35
|
Socket.bind(@address, **@options, &block)
|
36
36
|
rescue Errno::EADDRINUSE
|
37
37
|
# If you encounter EADDRINUSE from `bind()`, you can check if the socket is actually accepting connections by attempting to `connect()` to it. If the socket is still bound by an active process, the connection will succeed. Otherwise, it should be safe to `unlink()` the path and try again.
|
38
|
-
if !bound?
|
39
|
-
File.unlink(@path)
|
38
|
+
if !bound?
|
39
|
+
File.unlink(@path) rescue nil
|
40
40
|
retry
|
41
41
|
else
|
42
42
|
raise
|
data/lib/async/io/version.rb
CHANGED
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: async-io
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.36.
|
4
|
+
version: 1.36.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Williams
|
@@ -46,7 +46,7 @@ cert_chain:
|
|
46
46
|
Q2K9NVun/S785AP05vKkXZEFYxqG6EW012U4oLcFl5MySFajYXRYbuUpH6AY+HP8
|
47
47
|
voD0MPg1DssDLKwXyt1eKD/+Fq0bFWhwVM/1XiAXL7lyYUyOq24KHgQ2Csg=
|
48
48
|
-----END CERTIFICATE-----
|
49
|
-
date: 2023-
|
49
|
+
date: 2023-10-29 00:00:00.000000000 Z
|
50
50
|
dependencies:
|
51
51
|
- !ruby/object:Gem::Dependency
|
52
52
|
name: async
|
metadata.gz.sig
CHANGED
Binary file
|