good_job 3.19.1 → 3.19.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: 6d7862005653a1c6fd88d20ffdf1f15e6168dea77f8f47ca1f967a646b7f6a3d
4
- data.tar.gz: eb267fbf670b7e2cf0b2b67365f32b28b48378bfd1c36f0dc2decae6b5d2d91b
3
+ metadata.gz: ec598c88f135d5ebf9ec8fd1275e633cb26ec203287236bae56f5d143ff2b8fe
4
+ data.tar.gz: 2648b15cb11ac4996cb6637126507ba1a7ab37fe652759f7379ae2b6ffa66481
5
5
  SHA512:
6
- metadata.gz: c87de07512abd5b7f51e170b69a2568df98878e8c6a572141cb2f4126bc4c4a21b80f49fed0a5946e1c4b7f2743b463b37d605432c2d63b651b0d84503c80d72
7
- data.tar.gz: 9349bc27172b1051d90e942b90ed961a30a23ba68d0960d66e007c7018cbca8984af8080dc846fc100f4abf4602cd47efb040e185db30b5e2528ba5a7d51a2bd
6
+ metadata.gz: f6fc1208753c103a7a9edc06533cd778f4c4a7232e1965897795d7f82d063f41afb75424dff0d43ba30896f6ae579c324350da6c15b2785118ddbabd275b7e5d
7
+ data.tar.gz: d71c68f923c1640e639e38e17bc23f9cb31c85ab1efbd629012cc8454b65c7eb73618a67f556a5164b070cc48ae8945ea9b05bb9ea7615554aeab2dd0ed2020d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [v3.19.2](https://github.com/bensheldon/good_job/tree/v3.19.2) (2023-09-22)
4
+
5
+ [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.19.1...v3.19.2)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Fix HttpServer to handle Errno::EPIPE [\#1083](https://github.com/bensheldon/good_job/pull/1083) ([shouichi](https://github.com/shouichi))
10
+
3
11
  ## [v3.19.1](https://github.com/bensheldon/good_job/tree/v3.19.1) (2023-09-20)
4
12
 
5
13
  [Full Changelog](https://github.com/bensheldon/good_job/compare/v3.19.0...v3.19.1)
@@ -55,7 +55,7 @@ module GoodJob
55
55
  end
56
56
 
57
57
  client.close
58
- rescue IO::WaitReadable, Errno::EINTR
58
+ rescue IO::WaitReadable, Errno::EINTR, Errno::EPIPE
59
59
  retry
60
60
  end
61
61
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  module GoodJob
4
4
  # GoodJob gem version.
5
- VERSION = '3.19.1'
5
+ VERSION = '3.19.2'
6
6
 
7
7
  # GoodJob version as Gem::Version object
8
8
  GEM_VERSION = Gem::Version.new(VERSION)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: good_job
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.19.1
4
+ version: 3.19.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Sheldon
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-09-20 00:00:00.000000000 Z
11
+ date: 2023-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activejob