puffing-billy 2.4.0 → 2.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/lib/billy/proxy.rb +1 -1
- data/lib/billy/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 714d9af5c05c61dbdc36579e513987c4e66c3a3ae753cd8c4959e12fe091b042
|
4
|
+
data.tar.gz: b294a868e906fe711ad856f0d86ca22388be111fc6b2634af1cb26ee7174ebf8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3bcebbc4882d9f0b29cb68de495338457d0806275b024803698a7a4ae5392655da3ed63d8293b1fce78795ed1dd7da52216b403b0537f8089dcb526f8c3fd0ba
|
7
|
+
data.tar.gz: a2ad11d11b81d522255a88bd2534082c59d056458786f28a4e9e496129d0eb4715d5045555ba59ac1838f5be19f2e9f461e47b873c803aee52af50c29d2ecb58
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
v2.4.1, 2021-01-05
|
2
|
+
-------------------
|
3
|
+
* Rescue Errno::ECONNRESET in shutdown phase [#307](https://github.com/oesmith/puffing-billy/pull/307)
|
4
|
+
|
1
5
|
v2.4.0, 2020-08-26
|
2
6
|
-------------------
|
3
7
|
* Make verify_peer configurable and default it to false [#294](https://github.com/oesmith/puffing-billy/pull/294)
|
data/README.md
CHANGED
@@ -437,7 +437,7 @@ The handler column indicates how Puffing Billy handled your request:
|
|
437
437
|
- error: This request was not handled by a stub, and was not successfully handled
|
438
438
|
- cache: This response was handled by a previous cache
|
439
439
|
|
440
|
-
If your `status` is set to
|
440
|
+
If your `status` is set to `inflight` this request has not yet been handled fully. Either puffing billy crashed
|
441
441
|
internally on this request, or your test ended before it could complete successfully.
|
442
442
|
|
443
443
|
`c.cache_request_body_methods` is used to specify HTTP methods of requests that you would like to cache separately based on the contents of the request body. The default is ['post'].
|
data/lib/billy/proxy.rb
CHANGED
@@ -62,7 +62,7 @@ module Billy
|
|
62
62
|
s.close
|
63
63
|
Billy.log(:info, "puffing-billy: Waiting for event machine to shutdown on port #{port}")
|
64
64
|
s
|
65
|
-
rescue Errno::ECONNREFUSED, Errno::EADDRNOTAVAIL, Errno::ENETUNREACH
|
65
|
+
rescue Errno::ECONNREFUSED, Errno::EADDRNOTAVAIL, Errno::ENETUNREACH, Errno::ECONNRESET
|
66
66
|
false
|
67
67
|
end
|
68
68
|
|
data/lib/billy/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puffing-billy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.4.
|
4
|
+
version: 2.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Olly Smith
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|