async-container 0.18.1 → 0.18.2

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: 7578abcb2db0aaab09b3e61f905b0a39f433521630fbc496b12e9042c25b54e7
4
- data.tar.gz: ac19ef8379687387ea79a17426b3197a713c6b4b0eb5d9e86f620d931e3fe3f0
3
+ metadata.gz: 9d3a096d0939e7edfa4e95595a687c8012bec0d3dfb2939fa9fef5abc28369c0
4
+ data.tar.gz: 45d8343aab2a7c241f0367bbb5d63de2417c4b3cd3947825d91fdad9f05bec0d
5
5
  SHA512:
6
- metadata.gz: 5f335d1a6f5b7100660b458daf3014e62b52fed0f1ab0e67fcd8b914a0a87111027241348812f236af6c35c78e20461c7592270677dc577bc3f45b06c7142fb5
7
- data.tar.gz: 2309e4cec26af24d6f7af3a067858bade3db001f9ab3d0c300ff151f0489625b736e6388fa4a4c3b9c98b53d7e71d54a2e6a69ff8e9883a17d16ca1021968953
6
+ metadata.gz: 7fae79f9bb285808e07f8dc6f974da0db5b01109723a8e182deee1f1e9f9630ec13f2234ea2c8cea04fe5d06c3ebb720603767fc9fabbdaccd0d27b17ef651a9
7
+ data.tar.gz: 4f75cc9c8f84a320ab16ee35714db0aa55cf7aed8b0e7154161086a8c2a371c3b6f3b0ee9a3e97f9927941302c1f24b122c4f686b1dadf36a3cb6b81fc6949f6
checksums.yaml.gz.sig CHANGED
Binary file
@@ -1,13 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Released under the MIT License.
4
- # Copyright, 2020-2022, by Samuel Williams.
4
+ # Copyright, 2020-2024, by Samuel Williams.
5
5
  # Copyright, 2020, by Olle Jonsson.
6
6
 
7
- require 'async/io'
8
- require 'async/io/unix_endpoint'
9
- require 'kernel/sync'
10
-
11
7
  require 'tmpdir'
12
8
  require 'securerandom'
13
9
 
@@ -62,19 +58,13 @@ module Async
62
58
  class Context
63
59
  def initialize(path)
64
60
  @path = path
65
- @endpoint = IO::Endpoint.unix(@path, ::Socket::SOCK_DGRAM)
66
-
67
- Sync do
68
- @bound = @endpoint.bind
69
- end
61
+ @bound = Addrinfo.unix(@path, ::Socket::SOCK_DGRAM).bind
70
62
 
71
63
  @state = {}
72
64
  end
73
65
 
74
66
  def close
75
- Sync do
76
- @bound.close
77
- end
67
+ @bound.close
78
68
 
79
69
  File.unlink(@path)
80
70
  end
@@ -1,14 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Released under the MIT License.
4
- # Copyright, 2020-2022, by Samuel Williams.
4
+ # Copyright, 2020-2024, by Samuel Williams.
5
5
 
6
6
  require_relative 'client'
7
7
 
8
- require 'async/io'
9
- require 'async/io/unix_endpoint'
10
- require 'kernel/sync'
11
-
12
8
  module Async
13
9
  module Container
14
10
  module Notify
@@ -32,7 +28,7 @@ module Async
32
28
  # @parameter path [String] The path to the UNIX socket used for sending messages to the process manager.
33
29
  def initialize(path)
34
30
  @path = path
35
- @endpoint = IO::Endpoint.unix(path, ::Socket::SOCK_DGRAM)
31
+ @address = Addrinfo.unix(path, ::Socket::SOCK_DGRAM)
36
32
  end
37
33
 
38
34
  # Dump a message in the format requied by `sd_notify`.
@@ -63,10 +59,8 @@ module Async
63
59
  raise ArgumentError, "Message length #{message.bytesize} exceeds #{MAXIMUM_MESSAGE_SIZE}: #{message.inspect}"
64
60
  end
65
61
 
66
- Sync do
67
- @endpoint.connect do |peer|
68
- peer.send(data)
69
- end
62
+ @address.connect do |peer|
63
+ peer.sendmsg(data)
70
64
  end
71
65
  end
72
66
 
@@ -5,6 +5,6 @@
5
5
 
6
6
  module Async
7
7
  module Container
8
- VERSION = "0.18.1"
8
+ VERSION = "0.18.2"
9
9
  end
10
10
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: async-container
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.1
4
+ version: 0.18.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
metadata.gz.sig CHANGED
Binary file