rack-timeout 0.3.0.pre.beta.2 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG +2 -5
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5a270fccd2075f0f8333041b5bfbbc5c3fdf2c4c
|
4
|
+
data.tar.gz: 41588cd9b9e1fbfce990852177cb5ec7b284de0d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0768903ea52e7c2eeabd4140e1bebebe5d24f608e9c03ad1482c65f14d468d2cabd59bc2165502d3255005b420bc91c2797151fabb5483004d04d448569161e6
|
7
|
+
data.tar.gz: d6fb9a424a79dcbdc745b2d1b7be2718ef9baee6b9c22e4ba59e91e3446c64243a99c41424da91929668d2583c21c3284cb2d3e30ebd5a569ad84e61e03730fe
|
data/CHANGELOG
CHANGED
@@ -1,9 +1,6 @@
|
|
1
|
-
0.3.0
|
2
|
-
|
1
|
+
0.3.0
|
2
|
+
=====
|
3
3
|
- use a single scheduler thread to manage timeouts, instead of one timeout thread per request
|
4
|
-
|
5
|
-
0.3.0-beta.1
|
6
|
-
============
|
7
4
|
- instead of inserting middleware at position 0 for rails, insert before Rack::Runtime (which is right after Rack::Lock and the static file stuff)
|
8
5
|
- reshuffle error types: RequestExpiryError is again a RuntimeError, and timeouts raise a RequestTimeoutException, an Exception, and not descending from Rack::Timeout::Error (see README for more)
|
9
6
|
- don't insert middleware for rails in test environment
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rack-timeout
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.0
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Caio Chassot
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-09-02 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Rack middleware which aborts requests that have been running for longer
|
14
14
|
than a specified timeout.
|
@@ -46,12 +46,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
46
46
|
version: '0'
|
47
47
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
48
48
|
requirements:
|
49
|
-
- - "
|
49
|
+
- - ">="
|
50
50
|
- !ruby/object:Gem::Version
|
51
|
-
version:
|
51
|
+
version: '0'
|
52
52
|
requirements: []
|
53
53
|
rubyforge_project:
|
54
|
-
rubygems_version: 2.4.
|
54
|
+
rubygems_version: 2.4.8
|
55
55
|
signing_key:
|
56
56
|
specification_version: 4
|
57
57
|
summary: Abort requests that are taking too long
|