daemon_controller 3.0.1 → 3.0.2

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: a1f6789411c7ea7ff1a641d74b0495b9d8e434d7ea5beaa4abbeade3e0cf2c33
4
- data.tar.gz: 47ea5871588be9702620cd1487c2c05a5d314d70ff6e1a9df58456d3c6c1be53
3
+ metadata.gz: 02e6d1c4efc1649b5b4821e6d7de4be8c18f92f25ff961c2a05289790dc5e5c3
4
+ data.tar.gz: 3895f10b0bc4aa89c13a2e6683c3fbba00f08d1afc8a6fcfc1b631a29b9a77a1
5
5
  SHA512:
6
- metadata.gz: bcecb7cd5d60e2a565e96d104085f2d09262336a1c3afcd583acff5d27f988bd617bb326aa0b5447d284e61cfd93d8ea8c42cf3d44ae918322b4167b17182681
7
- data.tar.gz: 6fa2da44033e92a77a47ff0fdde71683e271f4115ddd7a5c5d2ef4a0904bcb65111f211564598ee7594ef97fe9b075918bfa3b76a4532f6fac131971d068448a
6
+ metadata.gz: 8be8bba54bea358868f4f5c75d7cebf2af2889259ce79cfd7ed53f3a992b9bc4d24a1f65035336372da180dc50320cc343b464d9bd3e1981532118c7f27c1bc7
7
+ data.tar.gz: 73a8587a61e9028b042a7f0475acfa1ca1d0610fe1cee7b6802653d8161f7f871a161c8ea77e4db6377acb8f0c2b88f9270be8147d0a14a19764c57473b6afae
@@ -24,6 +24,6 @@
24
24
  class DaemonController
25
25
  MAJOR = 3
26
26
  MINOR = 0
27
- TINY = 1
27
+ TINY = 2
28
28
  VERSION_STRING = "#{MAJOR}.#{MINOR}.#{TINY}"
29
29
  end # class DaemonController
@@ -458,7 +458,7 @@ class DaemonController
458
458
  begin
459
459
  timeoutable(@start_abort_timeout) do
460
460
  allow_timeout do
461
- wait_for_aborted_process(pid:, is_direct_child:)
461
+ wait_for_aborted_process(pid: pid, is_direct_child: is_direct_child)
462
462
  end
463
463
  end
464
464
  rescue Timeout::Error
@@ -468,7 +468,7 @@ class DaemonController
468
468
  end
469
469
 
470
470
  allow_timeout do
471
- wait_for_aborted_process(pid:, is_direct_child:)
471
+ wait_for_aborted_process(pid: pid, is_direct_child: is_direct_child)
472
472
  end
473
473
  end
474
474
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: daemon_controller
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hongli Lai