passenger 2.2.13 → 2.2.14
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of passenger might be problematic. Click here for more details.
- data/NEWS +11 -0
- data/doc/Users guide Apache.html +1 -1
- data/doc/Users guide Nginx.html +1 -1
- data/ext/common/Version.h +1 -1
- data/ext/nginx/HelperServer.cpp +7 -1
- data/lib/phusion_passenger/abstract_request_handler.rb +2 -1
- data/lib/phusion_passenger/constants.rb +1 -1
- data/lib/phusion_passenger/utils.rb +1 -1
- metadata +4 -4
data/NEWS
CHANGED
@@ -1,3 +1,14 @@
|
|
1
|
+
Release 2.2.14
|
2
|
+
--------------
|
3
|
+
|
4
|
+
* Added support for Rubinius
|
5
|
+
Patch contributed by Evan Phoenix.
|
6
|
+
* Fixed a mistake in the SIGQUIT backtrace message.
|
7
|
+
Patch contributed by Christoffer Sawicki.
|
8
|
+
* [Nginx] Fix a localtime() crash on FreeBSD
|
9
|
+
This was caused by insufficient stack space for threads. Issue #499.
|
10
|
+
|
11
|
+
|
1
12
|
Release 2.2.13
|
2
13
|
--------------
|
3
14
|
|
data/doc/Users guide Apache.html
CHANGED
data/doc/Users guide Nginx.html
CHANGED
data/ext/common/Version.h
CHANGED
data/ext/nginx/HelperServer.cpp
CHANGED
@@ -139,7 +139,13 @@ struct ClientDisconnectedException { };
|
|
139
139
|
class Client {
|
140
140
|
private:
|
141
141
|
/** The client thread stack size in bytes. */
|
142
|
-
static const int CLIENT_THREAD_STACK_SIZE =
|
142
|
+
static const int CLIENT_THREAD_STACK_SIZE =
|
143
|
+
#ifdef __FreeBSD__
|
144
|
+
// localtime() on FreeBSD needs some more stack space.
|
145
|
+
1024 * 96;
|
146
|
+
#else
|
147
|
+
1024 * 64;
|
148
|
+
#endif
|
143
149
|
|
144
150
|
/** The client number for this Client object, assigned by Server. */
|
145
151
|
unsigned int number;
|
@@ -24,7 +24,7 @@
|
|
24
24
|
module PhusionPassenger
|
25
25
|
# Phusion Passenger version number.
|
26
26
|
# Don't forget to edit ext/common/Version.h too.
|
27
|
-
VERSION_STRING = '2.2.
|
27
|
+
VERSION_STRING = '2.2.14'
|
28
28
|
|
29
29
|
DEFAULT_FRAMEWORK_SPAWNER_MAX_IDLE_TIME = 30 * 60
|
30
30
|
DEFAULT_APP_SPAWNER_MAX_IDLE_TIME = 10 * 60
|
@@ -34,7 +34,7 @@ require 'tempfile'
|
|
34
34
|
require 'stringio'
|
35
35
|
require 'phusion_passenger/packaging'
|
36
36
|
require 'phusion_passenger/exceptions'
|
37
|
-
if !defined?(RUBY_ENGINE) || RUBY_ENGINE == "ruby"
|
37
|
+
if !defined?(RUBY_ENGINE) || RUBY_ENGINE == "ruby" || RUBY_ENGINE == "rbx"
|
38
38
|
require 'phusion_passenger/native_support'
|
39
39
|
end
|
40
40
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: passenger
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 27
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 2.2.
|
9
|
+
- 14
|
10
|
+
version: 2.2.14
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Phusion - http://www.phusion.nl/
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-06-
|
18
|
+
date: 2010-06-04 00:00:00 +02:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|