faye-websocket 0.7.1 → 0.7.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.

Potentially problematic release.


This version of faye-websocket might be problematic. Click here for more details.

checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d7cbc9e13bdd51d1d9904c1a80e89da797bf7000
4
+ data.tar.gz: e5511dfc4932fd6026f5f64f0d6fe693a225bf73
5
+ SHA512:
6
+ metadata.gz: 1560e934990c4dae65829a8e7379e868abb420dfe69d64d8bcfead09c29fce6e614f06a1bbeb75da33b0bf14f0a06b8bd56558897d19dd0be5a76def3d4d07ea
7
+ data.tar.gz: d68553cb34523418f23aba66ab7e058739242f881a70ff66439a0b033452cbb4d3fb253006b12cba33fb8b1e57ee25fec2e9c1874c59ddae13e437cf99fbdd21
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ### 0.7.2 / 2013-12-29
2
+
3
+ * Fix WebSocket detection in cases where the web server does not produce an `env`
4
+
5
+
1
6
  ### 0.7.1 / 2013-12-03
2
7
 
3
8
  * Support the `max_length` websocket-driver option
data/README.md CHANGED
@@ -165,7 +165,7 @@ is an optional hash containing any of these keys:
165
165
  * `:headers` - a hash containing key-value pairs representing HTTP headers to
166
166
  be sent during the handshake process
167
167
  * `:max_length` - the maximum allowed size of incoming message frames, in bytes.
168
- The default value is `2^30 - 1`, or 1 byte short of 1 GiB.
168
+ The default value is `2^26 - 1`, or 1 byte short of 64 MiB.
169
169
  * `:ping` - an integer that sets how often the WebSocket should send ping
170
170
  frames, measured in seconds
171
171
 
@@ -64,10 +64,10 @@ module Faye
64
64
  def initialize(env, protocols = nil, options = {})
65
65
  WebSocket.ensure_reactor_running
66
66
 
67
- @env = env
68
- @url = WebSocket.determine_url(@env)
69
- @driver = ::WebSocket::Driver.rack(self, :max_length => options[:max_length], :protocols => protocols)
70
- @stream = Stream.new(self)
67
+ @env = env
68
+ @url = WebSocket.determine_url(@env)
69
+ @driver = ::WebSocket::Driver.rack(self, :max_length => options[:max_length], :protocols => protocols)
70
+ @stream = Stream.new(self)
71
71
 
72
72
  if callback = @env['async.callback']
73
73
  callback.call([101, {}, @stream])
@@ -4,12 +4,12 @@ module Faye
4
4
  module Adapter
5
5
  def websocket?
6
6
  e = defined?(@env) ? @env : env
7
- WebSocket.websocket?(e)
7
+ e && WebSocket.websocket?(e)
8
8
  end
9
9
 
10
10
  def eventsource?
11
11
  e = defined?(@env) ? @env : env
12
- EventSource.eventsource?(e)
12
+ e && EventSource.eventsource?(e)
13
13
  end
14
14
 
15
15
  def socket_connection?
metadata CHANGED
@@ -1,190 +1,173 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: faye-websocket
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
5
- prerelease:
4
+ version: 0.7.2
6
5
  platform: ruby
7
6
  authors:
8
7
  - James Coglan
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-12-03 00:00:00.000000000 Z
11
+ date: 2013-12-29 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: eventmachine
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: 0.12.0
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: 0.12.0
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: websocket-driver
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - ">="
36
32
  - !ruby/object:Gem::Version
37
33
  version: 0.3.1
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - ">="
44
39
  - !ruby/object:Gem::Version
45
40
  version: 0.3.1
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: progressbar
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ! '>='
45
+ - - ">="
52
46
  - !ruby/object:Gem::Version
53
47
  version: '0'
54
48
  type: :development
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ! '>='
52
+ - - ">="
60
53
  - !ruby/object:Gem::Version
61
54
  version: '0'
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: puma
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
- - - ! '>='
59
+ - - ">="
68
60
  - !ruby/object:Gem::Version
69
61
  version: 2.0.0
62
+ - - "<"
63
+ - !ruby/object:Gem::Version
64
+ version: 2.7.0
70
65
  type: :development
71
66
  prerelease: false
72
67
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
68
  requirements:
75
- - - ! '>='
69
+ - - ">="
76
70
  - !ruby/object:Gem::Version
77
71
  version: 2.0.0
72
+ - - "<"
73
+ - !ruby/object:Gem::Version
74
+ version: 2.7.0
78
75
  - !ruby/object:Gem::Dependency
79
76
  name: rack
80
77
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
78
  requirements:
83
- - - ! '>='
79
+ - - ">="
84
80
  - !ruby/object:Gem::Version
85
81
  version: '0'
86
82
  type: :development
87
83
  prerelease: false
88
84
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
85
  requirements:
91
- - - ! '>='
86
+ - - ">="
92
87
  - !ruby/object:Gem::Version
93
88
  version: '0'
94
89
  - !ruby/object:Gem::Dependency
95
90
  name: rspec
96
91
  requirement: !ruby/object:Gem::Requirement
97
- none: false
98
92
  requirements:
99
- - - ! '>='
93
+ - - ">="
100
94
  - !ruby/object:Gem::Version
101
95
  version: '0'
102
96
  type: :development
103
97
  prerelease: false
104
98
  version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
99
  requirements:
107
- - - ! '>='
100
+ - - ">="
108
101
  - !ruby/object:Gem::Version
109
102
  version: '0'
110
103
  - !ruby/object:Gem::Dependency
111
104
  name: rspec-eventmachine
112
105
  requirement: !ruby/object:Gem::Requirement
113
- none: false
114
106
  requirements:
115
- - - ! '>='
107
+ - - ">="
116
108
  - !ruby/object:Gem::Version
117
109
  version: '0'
118
110
  type: :development
119
111
  prerelease: false
120
112
  version_requirements: !ruby/object:Gem::Requirement
121
- none: false
122
113
  requirements:
123
- - - ! '>='
114
+ - - ">="
124
115
  - !ruby/object:Gem::Version
125
116
  version: '0'
126
117
  - !ruby/object:Gem::Dependency
127
118
  name: rainbows
128
119
  requirement: !ruby/object:Gem::Requirement
129
- none: false
130
120
  requirements:
131
- - - ~>
121
+ - - "~>"
132
122
  - !ruby/object:Gem::Version
133
123
  version: 4.4.0
134
124
  type: :development
135
125
  prerelease: false
136
126
  version_requirements: !ruby/object:Gem::Requirement
137
- none: false
138
127
  requirements:
139
- - - ~>
128
+ - - "~>"
140
129
  - !ruby/object:Gem::Version
141
130
  version: 4.4.0
142
131
  - !ruby/object:Gem::Dependency
143
132
  name: thin
144
133
  requirement: !ruby/object:Gem::Requirement
145
- none: false
146
134
  requirements:
147
- - - ! '>='
135
+ - - ">="
148
136
  - !ruby/object:Gem::Version
149
137
  version: 1.2.0
150
138
  type: :development
151
139
  prerelease: false
152
140
  version_requirements: !ruby/object:Gem::Requirement
153
- none: false
154
141
  requirements:
155
- - - ! '>='
142
+ - - ">="
156
143
  - !ruby/object:Gem::Version
157
144
  version: 1.2.0
158
145
  - !ruby/object:Gem::Dependency
159
146
  name: goliath
160
147
  requirement: !ruby/object:Gem::Requirement
161
- none: false
162
148
  requirements:
163
- - - ! '>='
149
+ - - ">="
164
150
  - !ruby/object:Gem::Version
165
151
  version: '0'
166
152
  type: :development
167
153
  prerelease: false
168
154
  version_requirements: !ruby/object:Gem::Requirement
169
- none: false
170
155
  requirements:
171
- - - ! '>='
156
+ - - ">="
172
157
  - !ruby/object:Gem::Version
173
158
  version: '0'
174
159
  - !ruby/object:Gem::Dependency
175
160
  name: passenger
176
161
  requirement: !ruby/object:Gem::Requirement
177
- none: false
178
162
  requirements:
179
- - - ! '>='
163
+ - - ">="
180
164
  - !ruby/object:Gem::Version
181
165
  version: 4.0.0
182
166
  type: :development
183
167
  prerelease: false
184
168
  version_requirements: !ruby/object:Gem::Requirement
185
- none: false
186
169
  requirements:
187
- - - ! '>='
170
+ - - ">="
188
171
  - !ruby/object:Gem::Version
189
172
  version: 4.0.0
190
173
  description:
@@ -194,60 +177,55 @@ extensions: []
194
177
  extra_rdoc_files:
195
178
  - README.md
196
179
  files:
197
- - README.md
198
180
  - CHANGELOG.md
181
+ - README.md
182
+ - examples/app.rb
183
+ - examples/autobahn_client.rb
184
+ - examples/client.rb
185
+ - examples/config.ru
186
+ - examples/haproxy.conf
187
+ - examples/rainbows.conf
188
+ - examples/server.rb
189
+ - examples/sse.html
190
+ - examples/ws.html
191
+ - lib/faye/adapters/goliath.rb
192
+ - lib/faye/adapters/rainbows.rb
193
+ - lib/faye/adapters/rainbows_client.rb
194
+ - lib/faye/adapters/thin.rb
199
195
  - lib/faye/eventsource.rb
196
+ - lib/faye/rack_stream.rb
197
+ - lib/faye/websocket.rb
200
198
  - lib/faye/websocket/adapter.rb
201
- - lib/faye/websocket/api/event_target.rb
199
+ - lib/faye/websocket/api.rb
202
200
  - lib/faye/websocket/api/event.rb
201
+ - lib/faye/websocket/api/event_target.rb
203
202
  - lib/faye/websocket/client.rb
204
- - lib/faye/websocket/api.rb
205
- - lib/faye/websocket.rb
206
- - lib/faye/adapters/rainbows_client.rb
207
- - lib/faye/adapters/goliath.rb
208
- - lib/faye/adapters/thin.rb
209
- - lib/faye/adapters/rainbows.rb
210
- - lib/faye/rack_stream.rb
211
- - examples/ws.html
212
- - examples/config.ru
213
- - examples/rainbows.conf
214
- - examples/sse.html
215
- - examples/log/passenger.8003.log
216
- - examples/log/passenger.7000.log
217
- - examples/app.rb
218
- - examples/server.rb
219
- - examples/client.rb
220
- - examples/tmp/pids/passenger.7000.pid.lock
221
- - examples/tmp/pids/passenger.8003.pid.lock
222
- - examples/haproxy.conf
223
- - examples/autobahn_client.rb
224
203
  homepage: http://github.com/faye/faye-websocket-ruby
225
204
  licenses:
226
205
  - MIT
206
+ metadata: {}
227
207
  post_install_message:
228
208
  rdoc_options:
229
- - --main
209
+ - "--main"
230
210
  - README.md
231
- - --markup
211
+ - "--markup"
232
212
  - markdown
233
213
  require_paths:
234
214
  - lib
235
215
  required_ruby_version: !ruby/object:Gem::Requirement
236
- none: false
237
216
  requirements:
238
- - - ! '>='
217
+ - - ">="
239
218
  - !ruby/object:Gem::Version
240
219
  version: '0'
241
220
  required_rubygems_version: !ruby/object:Gem::Requirement
242
- none: false
243
221
  requirements:
244
- - - ! '>='
222
+ - - ">="
245
223
  - !ruby/object:Gem::Version
246
224
  version: '0'
247
225
  requirements: []
248
226
  rubyforge_project:
249
- rubygems_version: 1.8.23
227
+ rubygems_version: 2.2.0
250
228
  signing_key:
251
- specification_version: 3
229
+ specification_version: 4
252
230
  summary: Standards-compliant WebSocket server and client
253
231
  test_files: []
@@ -1,156 +0,0 @@
1
- [ 2013-12-02 15:58:46.1743 30220/7fa4ebc5b740 agents/Watchdog/Main.cpp:574 ]: Options: { 'analytics_log_user' => 'james', 'cleanup_pidfiles' => 'L3RtcC9wYXNzZW5nZXItc3RhbmRhbG9uZS43cGV5MGsvdGVtcF9kaXJfdG91Y2hlci5waWQ=', 'default_group' => 'james', 'default_python' => 'python', 'default_ruby' => '/opt/rubies/1.9.3-p484/bin/ruby', 'default_user' => 'james', 'log_level' => '0', 'max_instances_per_app' => '0', 'max_pool_size' => '6', 'passenger_root' => '/tmp/passenger-standalone.7pey0k/locations.ini', 'pool_idle_time' => '300', 'prestart_urls' => 'aHR0cDovLzAuMC4wLjA6NzAwMAA=', 'temp_dir' => '/tmp', 'union_station_gateway_address' => 'gateway.unionstationapp.com', 'union_station_gateway_port' => '443', 'user_switching' => 'false', 'web_server_passenger_version' => '4.0.26', 'web_server_pid' => '30219', 'web_server_type' => 'nginx', 'web_server_worker_gid' => '-1', 'web_server_worker_uid' => '-1' }
2
- [ 2013-12-02 15:58:46.1887 30223/7f03a68e5740 agents/HelperAgent/Main.cpp:626 ]: PassengerHelperAgent online, listening at unix:/tmp/passenger.1.0.30219/generation-0/request
3
- [ 2013-12-02 15:58:46.2038 30229/7fdb66c47740 agents/LoggingAgent/Main.cpp:318 ]: PassengerLoggingAgent online, listening at unix:/tmp/passenger.1.0.30219/generation-0/logging
4
- [ 2013-12-02 15:58:46.2045 30220/7fa4ebc5b740 agents/Watchdog/Main.cpp:761 ]: All Phusion Passenger agents started!
5
- [ 2013-12-02 15:58:48.3747 30223/7f03a67ff700 Pool2/Spawner.h:796 ]: [App 30267 stdout]
6
- [ 2013-12-02 15:58:48.7401 30223/7f03a67ff700 Pool2/SmartSpawner.h:305 ]: Preloader for /home/james/projects/FAYE/websocket/ruby/examples started on PID 30267, listening on unix:/tmp/passenger.1.0.30219/generation-0/backends/preloader.30267
7
- [ 2013-12-02 15:58:51.7736 30223/7f03a46ae700 Pool2/Implementation.cpp:1291 ]: [App 30288 stdout] [:open, "http://localhost:7000/", ""]
8
- [ 2013-12-02 16:00:00.6587 30223/7f03a46ae700 Pool2/Implementation.cpp:1291 ]: [App 30288 stdout] [:close, "http://localhost:7000/"]
9
- [ 2013-12-02 16:02:20.1251 31569/7f8a6bb8c740 agents/Watchdog/Main.cpp:574 ]: Options: { 'analytics_log_user' => 'james', 'cleanup_pidfiles' => 'L3RtcC9wYXNzZW5nZXItc3RhbmRhbG9uZS52Z3BoYXIvdGVtcF9kaXJfdG91Y2hlci5waWQ=', 'default_group' => 'james', 'default_python' => 'python', 'default_ruby' => '/opt/rubies/1.9.3-p484/bin/ruby', 'default_user' => 'james', 'log_level' => '0', 'max_instances_per_app' => '0', 'max_pool_size' => '6', 'passenger_root' => '/tmp/passenger-standalone.vgphar/locations.ini', 'pool_idle_time' => '300', 'prestart_urls' => 'aHR0cDovLzAuMC4wLjA6NzAwMAA=', 'temp_dir' => '/tmp', 'union_station_gateway_address' => 'gateway.unionstationapp.com', 'union_station_gateway_port' => '443', 'user_switching' => 'false', 'web_server_passenger_version' => '4.0.26', 'web_server_pid' => '31568', 'web_server_type' => 'nginx', 'web_server_worker_gid' => '-1', 'web_server_worker_uid' => '-1' }
10
- [ 2013-12-02 16:02:20.1392 31572/7f65ae9b1740 agents/HelperAgent/Main.cpp:626 ]: PassengerHelperAgent online, listening at unix:/tmp/passenger.1.0.31568/generation-0/request
11
- [ 2013-12-02 16:02:20.1544 31578/7f9d8db31740 agents/LoggingAgent/Main.cpp:318 ]: PassengerLoggingAgent online, listening at unix:/tmp/passenger.1.0.31568/generation-0/logging
12
- [ 2013-12-02 16:02:20.1552 31569/7f8a6bb8c740 agents/Watchdog/Main.cpp:761 ]: All Phusion Passenger agents started!
13
- [ 2013-12-02 16:02:21.6073 31572/7f65ae8cb700 Pool2/Spawner.h:796 ]: [App 31610 stdout]
14
- [ 2013-12-02 16:02:21.9622 31572/7f65ae8cb700 Pool2/SmartSpawner.h:305 ]: Preloader for /home/james/projects/FAYE/websocket/ruby/examples started on PID 31610, listening on unix:/tmp/passenger.1.0.31568/generation-0/backends/preloader.31610
15
- [ 2013-12-02 16:02:21.9957 31572/7f65ac77a700 Pool2/Implementation.cpp:1291 ]: [App 31631 stdout] [:open, "http://localhost:7000/", ""]
16
- [ 2013-12-02 16:02:27.1327 31572/7f65ac77a700 Pool2/Implementation.cpp:1291 ]: [App 31631 stdout] [:close, "http://localhost:7000/"]
17
- [ 2013-12-02 16:02:27.1899 31572/7f65ac77a700 Pool2/Implementation.cpp:1291 ]: [App 31631 stdout] [:open, "http://localhost:7000/", ""]
18
- [ 2013-12-02 16:02:29.7856 31572/7f65ac77a700 Pool2/Implementation.cpp:1291 ]: [App 31631 stdout] [:close, "http://localhost:7000/"]
19
- [ 2013-12-02 16:02:29.8384 31572/7f65ac77a700 Pool2/Implementation.cpp:1291 ]: [App 31631 stdout] [:open, "http://localhost:7000/", ""]
20
- [ 2013-12-02 16:02:32.8268 31572/7f65ac77a700 Pool2/Implementation.cpp:1291 ]: [App 31631 stdout] [:close, "http://localhost:7000/"]
21
- [ 2013-12-02 16:02:32.8536 31572/7f65ac77a700 Pool2/Implementation.cpp:1291 ]: [App 31631 stdout] [:open, "http://localhost:7000/", ""]
22
- [ 2013-12-02 16:02:36.1292 31572/7f65ac77a700 Pool2/Implementation.cpp:1291 ]: [App 31631 stdout] [:close, "http://localhost:7000/"]
23
- [ 2013-12-02 16:03:10.5948 32196/7fe8fcb3d740 agents/Watchdog/Main.cpp:574 ]: Options: { 'analytics_log_user' => 'james', 'cleanup_pidfiles' => 'L3RtcC9wYXNzZW5nZXItc3RhbmRhbG9uZS4xbmM1NzNnL3RlbXBfZGlyX3RvdWNoZXIucGlk', 'default_group' => 'james', 'default_python' => 'python', 'default_ruby' => '/opt/rubies/1.9.3-p484/bin/ruby', 'default_user' => 'james', 'log_level' => '0', 'max_instances_per_app' => '0', 'max_pool_size' => '6', 'passenger_root' => '/tmp/passenger-standalone.1nc573g/locations.ini', 'pool_idle_time' => '300', 'prestart_urls' => 'aHR0cDovLzAuMC4wLjA6NzAwMAA=', 'temp_dir' => '/tmp', 'union_station_gateway_address' => 'gateway.unionstationapp.com', 'union_station_gateway_port' => '443', 'user_switching' => 'false', 'web_server_passenger_version' => '4.0.26', 'web_server_pid' => '32195', 'web_server_type' => 'nginx', 'web_server_worker_gid' => '-1', 'web_server_worker_uid' => '-1' }
24
- [ 2013-12-02 16:03:10.6075 32199/7f15a8dd1740 agents/HelperAgent/Main.cpp:626 ]: PassengerHelperAgent online, listening at unix:/tmp/passenger.1.0.32195/generation-0/request
25
- [ 2013-12-02 16:03:10.6158 32205/7f7b5467d740 agents/LoggingAgent/Main.cpp:318 ]: PassengerLoggingAgent online, listening at unix:/tmp/passenger.1.0.32195/generation-0/logging
26
- [ 2013-12-02 16:03:10.6163 32196/7fe8fcb3d740 agents/Watchdog/Main.cpp:761 ]: All Phusion Passenger agents started!
27
- [ 2013-12-02 16:03:12.8183 32199/7f15a8d2c700 Pool2/Spawner.h:796 ]: [App 32243 stdout]
28
- [ 2013-12-02 16:03:13.2175 32199/7f15a8d2c700 Pool2/SmartSpawner.h:305 ]: Preloader for /home/james/projects/FAYE/websocket/ruby/examples started on PID 32243, listening on unix:/tmp/passenger.1.0.32195/generation-0/backends/preloader.32243
29
- [ 2013-12-02 16:03:15.9801 32199/7f15a6399700 Pool2/Implementation.cpp:1291 ]: [App 32264 stdout] [:open, "http://localhost:7000/", ""]
30
- [ 2013-12-02 16:03:17.0388 32199/7f15a6399700 Pool2/Implementation.cpp:1291 ]: [App 32264 stdout] [:close, "http://localhost:7000/"]
31
- [ 2013-12-02 16:03:17.0542 32199/7f15a6399700 Pool2/Implementation.cpp:1291 ]: [App 32264 stdout] [:open, "http://localhost:7000/", ""]
32
- [ 2013-12-02 16:03:20.5756 32199/7f15a6399700 Pool2/Implementation.cpp:1291 ]: [App 32264 stdout] [:close, "http://localhost:7000/"]
33
- [ 2013-12-02 16:03:20.5930 32199/7f15a6399700 Pool2/Implementation.cpp:1291 ]: [App 32264 stdout] [:open, "http://localhost:7000/", ""]
34
- [ 2013-12-02 16:06:04.0387 32199/7f15a6399700 Pool2/Implementation.cpp:1291 ]: [App 32264 stdout] [:close, "http://localhost:7000/"]
35
- [ 2013-12-02 16:25:46.0904 11301/7f60636b8740 agents/Watchdog/Main.cpp:574 ]: Options: { 'analytics_log_user' => 'james', 'cleanup_pidfiles' => 'L3RtcC9wYXNzZW5nZXItc3RhbmRhbG9uZS4xMDMweXd0L3RlbXBfZGlyX3RvdWNoZXIucGlk', 'default_group' => 'james', 'default_python' => 'python', 'default_ruby' => '/opt/rubies/1.9.3-p484/bin/ruby', 'default_user' => 'james', 'log_level' => '0', 'max_instances_per_app' => '0', 'max_pool_size' => '6', 'passenger_root' => '/tmp/passenger-standalone.1030ywt/locations.ini', 'pool_idle_time' => '300', 'prestart_urls' => 'aHR0cDovLzAuMC4wLjA6NzAwMAA=', 'temp_dir' => '/tmp', 'union_station_gateway_address' => 'gateway.unionstationapp.com', 'union_station_gateway_port' => '443', 'user_switching' => 'false', 'web_server_passenger_version' => '4.0.26', 'web_server_pid' => '11300', 'web_server_type' => 'nginx', 'web_server_worker_gid' => '-1', 'web_server_worker_uid' => '-1' }
36
- [ 2013-12-02 16:25:46.1044 11304/7feeb3407740 agents/HelperAgent/Main.cpp:626 ]: PassengerHelperAgent online, listening at unix:/tmp/passenger.1.0.11300/generation-0/request
37
- [ 2013-12-02 16:25:46.1198 11310/7f8a19fef740 agents/LoggingAgent/Main.cpp:318 ]: PassengerLoggingAgent online, listening at unix:/tmp/passenger.1.0.11300/generation-0/logging
38
- [ 2013-12-02 16:25:46.1206 11301/7f60636b8740 agents/Watchdog/Main.cpp:761 ]: All Phusion Passenger agents started!
39
- [ 2013-12-02 16:25:48.3100 11304/7feeb3362700 Pool2/Spawner.h:796 ]: [App 11348 stdout]
40
- [ 2013-12-02 16:25:48.6909 11304/7feeb3362700 Pool2/SmartSpawner.h:305 ]: Preloader for /home/james/projects/FAYE/websocket/ruby/examples started on PID 11348, listening on unix:/tmp/passenger.1.0.11300/generation-0/backends/preloader.11348
41
- [ 2013-12-02 16:26:03.2884 11620/7fcf80042740 agents/Watchdog/Main.cpp:574 ]: Options: { 'analytics_log_user' => 'james', 'cleanup_pidfiles' => 'L3RtcC9wYXNzZW5nZXItc3RhbmRhbG9uZS4xZGZleDEwL3RlbXBfZGlyX3RvdWNoZXIucGlk', 'default_group' => 'james', 'default_python' => 'python', 'default_ruby' => '/opt/rubies/1.9.3-p484/bin/ruby', 'default_user' => 'james', 'log_level' => '0', 'max_instances_per_app' => '0', 'max_pool_size' => '6', 'passenger_root' => '/tmp/passenger-standalone.1dfex10/locations.ini', 'pool_idle_time' => '300', 'prestart_urls' => 'aHR0cDovLzAuMC4wLjA6NzAwMAA=', 'temp_dir' => '/tmp', 'union_station_gateway_address' => 'gateway.unionstationapp.com', 'union_station_gateway_port' => '443', 'user_switching' => 'false', 'web_server_passenger_version' => '4.0.26', 'web_server_pid' => '11619', 'web_server_type' => 'nginx', 'web_server_worker_gid' => '-1', 'web_server_worker_uid' => '-1' }
42
- [ 2013-12-02 16:26:03.3010 11623/7f2f76390740 agents/HelperAgent/Main.cpp:626 ]: PassengerHelperAgent online, listening at unix:/tmp/passenger.1.0.11619/generation-0/request
43
- [ 2013-12-02 16:26:03.3163 11629/7f7ddfa8d740 agents/LoggingAgent/Main.cpp:318 ]: PassengerLoggingAgent online, listening at unix:/tmp/passenger.1.0.11619/generation-0/logging
44
- [ 2013-12-02 16:26:03.3170 11620/7fcf80042740 agents/Watchdog/Main.cpp:761 ]: All Phusion Passenger agents started!
45
- [ 2013-12-02 16:26:05.4971 11623/7f2f762aa700 Pool2/Spawner.h:796 ]: [App 11668 stdout]
46
- [ 2013-12-02 16:26:05.8938 11623/7f2f762aa700 Pool2/SmartSpawner.h:305 ]: Preloader for /home/james/projects/FAYE/websocket/ruby/examples started on PID 11668, listening on unix:/tmp/passenger.1.0.11619/generation-0/backends/preloader.11668
47
- [ 2013-12-02 16:26:09.8509 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", ""]
48
- [ 2013-12-02 16:27:14.8864 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
49
- [ 2013-12-02 16:27:19.8914 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "2"]
50
- [ 2013-12-02 16:28:25.1460 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
51
- [ 2013-12-02 16:28:30.1514 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "4"]
52
- [ 2013-12-02 16:29:35.3916 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
53
- [ 2013-12-02 16:29:40.3968 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "6"]
54
- [ 2013-12-02 16:30:45.6879 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
55
- [ 2013-12-02 16:30:50.6908 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "8"]
56
- [ 2013-12-02 16:31:55.9803 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
57
- [ 2013-12-02 16:32:00.9861 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "10"]
58
- [ 2013-12-02 16:33:06.2635 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
59
- [ 2013-12-02 16:33:11.2664 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "12"]
60
- [ 2013-12-02 16:34:16.5596 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
61
- [ 2013-12-02 16:34:21.5592 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "14"]
62
- [ 2013-12-02 16:35:26.8366 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
63
- [ 2013-12-02 16:35:31.8424 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "16"]
64
- [ 2013-12-02 16:36:37.0890 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
65
- [ 2013-12-02 16:36:42.0948 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "18"]
66
- [ 2013-12-02 16:37:47.3739 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
67
- [ 2013-12-02 16:37:52.3872 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "20"]
68
- [ 2013-12-02 16:38:57.6790 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
69
- [ 2013-12-02 16:39:02.6814 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "22"]
70
- [ 2013-12-02 16:40:07.9632 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
71
- [ 2013-12-02 16:40:12.9659 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "24"]
72
- [ 2013-12-02 16:41:18.2572 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
73
- [ 2013-12-02 16:41:23.2629 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "26"]
74
- [ 2013-12-02 16:42:28.5524 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
75
- [ 2013-12-02 16:42:33.5580 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "28"]
76
- [ 2013-12-02 16:43:38.8453 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
77
- [ 2013-12-02 16:43:43.8517 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "30"]
78
- [ 2013-12-02 16:44:49.1419 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
79
- [ 2013-12-02 16:44:54.1481 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "32"]
80
- [ 2013-12-02 16:45:59.3809 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
81
- [ 2013-12-02 16:46:04.3857 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "34"]
82
- [ 2013-12-02 16:47:09.6172 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
83
- [ 2013-12-02 16:47:14.6225 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "36"]
84
- [ 2013-12-02 16:48:19.8542 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
85
- [ 2013-12-02 16:48:24.8592 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "38"]
86
- [ 2013-12-02 16:49:30.0871 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
87
- [ 2013-12-02 16:49:35.0901 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "40"]
88
- [ 2013-12-02 16:50:40.3193 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
89
- [ 2013-12-02 16:50:45.3220 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "42"]
90
- [ 2013-12-02 16:51:50.5522 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
91
- [ 2013-12-02 16:51:55.5620 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "44"]
92
- [ 2013-12-02 16:53:00.7918 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
93
- [ 2013-12-02 16:53:05.7982 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "46"]
94
- [ 2013-12-02 16:54:11.0308 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
95
- [ 2013-12-02 16:54:16.0342 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "48"]
96
- [ 2013-12-02 16:55:21.2646 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
97
- [ 2013-12-02 16:55:26.2696 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "50"]
98
- [ 2013-12-02 16:56:31.5033 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
99
- [ 2013-12-02 16:56:36.5068 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "52"]
100
- [ 2013-12-02 16:57:41.7387 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
101
- [ 2013-12-02 16:57:46.7445 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "54"]
102
- [ 2013-12-02 16:58:51.9759 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
103
- [ 2013-12-02 16:58:56.9790 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "56"]
104
- [ 2013-12-02 17:00:02.2108 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
105
- [ 2013-12-02 17:00:07.2164 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "58"]
106
- [ 2013-12-02 17:01:12.4487 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
107
- [ 2013-12-02 17:01:17.4544 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "60"]
108
- [ 2013-12-02 17:02:22.6870 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
109
- [ 2013-12-02 17:02:27.6905 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "62"]
110
- [ 2013-12-02 17:03:32.9224 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
111
- [ 2013-12-02 17:03:37.9250 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "64"]
112
- [ 2013-12-02 17:04:43.1551 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
113
- [ 2013-12-02 17:04:48.1599 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "66"]
114
- [ 2013-12-02 17:05:53.3921 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
115
- [ 2013-12-02 17:05:58.3974 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "68"]
116
- [ 2013-12-02 17:07:03.6289 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
117
- [ 2013-12-02 17:07:08.6327 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "70"]
118
- [ 2013-12-02 17:08:13.8638 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
119
- [ 2013-12-02 17:08:18.8688 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "72"]
120
- [ 2013-12-02 17:09:24.1011 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
121
- [ 2013-12-02 17:09:29.1115 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "74"]
122
- [ 2013-12-02 17:10:34.3439 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
123
- [ 2013-12-02 17:10:39.3500 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "76"]
124
- [ 2013-12-02 17:11:44.5798 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
125
- [ 2013-12-02 17:11:49.5852 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "78"]
126
- [ 2013-12-02 17:12:54.8181 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
127
- [ 2013-12-02 17:12:59.8240 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "80"]
128
- [ 2013-12-02 17:14:05.0562 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
129
- [ 2013-12-02 17:14:10.0618 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "82"]
130
- [ 2013-12-02 17:15:15.2931 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
131
- [ 2013-12-02 17:15:20.2997 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "84"]
132
- [ 2013-12-02 17:16:25.5295 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
133
- [ 2013-12-02 17:16:30.5351 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "86"]
134
- [ 2013-12-02 17:17:35.7666 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
135
- [ 2013-12-02 17:17:40.7718 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "88"]
136
- [ 2013-12-02 17:18:45.0016 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
137
- [ 2013-12-02 17:18:51.0057 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "90"]
138
- [ 2013-12-02 17:19:56.2380 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
139
- [ 2013-12-02 17:20:01.2440 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "92"]
140
- [ 2013-12-02 17:21:06.4763 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
141
- [ 2013-12-02 17:21:11.4823 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "94"]
142
- [ 2013-12-02 17:22:16.7155 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
143
- [ 2013-12-02 17:22:21.7209 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "96"]
144
- [ 2013-12-02 17:23:26.9551 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
145
- [ 2013-12-02 17:23:31.9605 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "98"]
146
- [ 2013-12-02 17:24:37.1934 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
147
- [ 2013-12-02 17:24:42.1989 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "100"]
148
- [ 2013-12-02 17:25:47.4315 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
149
- [ 2013-12-02 17:25:52.4378 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "102"]
150
- [ 2013-12-02 17:26:57.6707 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
151
- [ 2013-12-02 17:27:02.6762 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "104"]
152
- [ 2013-12-02 17:28:07.9092 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
153
- [ 2013-12-02 17:28:12.9152 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "106"]
154
- [ 2013-12-02 17:29:18.1498 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]
155
- [ 2013-12-02 17:29:23.1570 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:open, "http://localhost:7000/", "108"]
156
- [ 2013-12-02 17:30:14.1612 11623/7f2f74159700 Pool2/Implementation.cpp:1291 ]: [App 11689 stdout] [:close, "http://localhost:7000/"]