faye-websocket 0.5.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of faye-websocket might be problematic. Click here for more details.
- data/CHANGELOG.md +5 -0
- data/README.md +53 -1
- data/examples/client.rb +10 -9
- data/examples/log/passenger.8001.log +1246 -0
- data/examples/tmp/pids/passenger.7000.pid +1 -0
- data/examples/tmp/pids/passenger.7000.pid.lock +0 -0
- data/examples/tmp/pids/passenger.8001.pid.lock +0 -0
- data/lib/faye/websocket.rb +1 -3
- data/lib/faye/websocket/api.rb +9 -3
- data/lib/faye/websocket/client.rb +11 -3
- metadata +24 -4
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -23,7 +23,8 @@ The following web servers are supported. Other servers that implement the
|
|
23
23
|
`rack.hjiack` API should also work.
|
24
24
|
|
25
25
|
* [Goliath](http://postrank-labs.github.com/goliath/)
|
26
|
-
* [
|
26
|
+
* [Phusion Passenger](https://www.phusionpassenger.com/) >= 4.0 with nginx >= 1.4
|
27
|
+
* [Puma](http://puma.io/) >= 2.0
|
27
28
|
* [Rainbows](http://rainbows.rubyforge.org/)
|
28
29
|
* [Thin](http://code.macournoyer.com/thin/)
|
29
30
|
|
@@ -122,6 +123,9 @@ EM.run {
|
|
122
123
|
}
|
123
124
|
```
|
124
125
|
|
126
|
+
The WebSocket client also lets you inspect the status and headers of the
|
127
|
+
handshake response via its `status` and `headers` methods.
|
128
|
+
|
125
129
|
|
126
130
|
## Subprotocol negotiation
|
127
131
|
|
@@ -145,6 +149,25 @@ If the client and server agree on a protocol, both the client- and server-side
|
|
145
149
|
socket objects expose the selected protocol through the `ws.protocol` property.
|
146
150
|
|
147
151
|
|
152
|
+
## Initialization options
|
153
|
+
|
154
|
+
Both the server- and client-side classes allow an options hash to be passed in
|
155
|
+
at initialization time, for example:
|
156
|
+
|
157
|
+
```ruby
|
158
|
+
ws = Faye::WebSocket.new(env, protocols, options)
|
159
|
+
ws = Faye::WebSocket::Client.new(url, protocols, options)
|
160
|
+
```
|
161
|
+
|
162
|
+
`protocols` as an array of subprotocols as described above, or `nil`. `options`
|
163
|
+
is an optional hash containing any of these keys:
|
164
|
+
|
165
|
+
* `:headers` - a hash containing key-value pairs representing HTTP headers to
|
166
|
+
be sent during the handshake process
|
167
|
+
* `:ping` - an integer that sets how often the WebSocket should send ping
|
168
|
+
frames, measured in seconds
|
169
|
+
|
170
|
+
|
148
171
|
## WebSocket API
|
149
172
|
|
150
173
|
Both the server- and client-side `WebSocket` objects support the following API:
|
@@ -302,6 +325,35 @@ EM.run {
|
|
302
325
|
```
|
303
326
|
|
304
327
|
|
328
|
+
### Running the app with Passenger
|
329
|
+
|
330
|
+
faye-websocket requires either Passenger for Nginx or Passenger Standalone.
|
331
|
+
Apache doesn't work well with WebSockets at this time. You do not need any
|
332
|
+
special configuration to make faye-websocket work, it should work out of the
|
333
|
+
box on Passenger provided you use at least Passenger 4.0.
|
334
|
+
|
335
|
+
Run your app on Passenger for Nginx by creating a virtual host entry which
|
336
|
+
points to your app's "public" directory:
|
337
|
+
|
338
|
+
```
|
339
|
+
server {
|
340
|
+
listen 9292;
|
341
|
+
server_name yourdomain.local;
|
342
|
+
root /path-to-your-app/public;
|
343
|
+
passenger_enabled on;
|
344
|
+
}
|
345
|
+
```
|
346
|
+
|
347
|
+
Or run your app on Passenger Standalone:
|
348
|
+
|
349
|
+
```
|
350
|
+
$ passenger start -p 9292
|
351
|
+
```
|
352
|
+
|
353
|
+
More information can be found on [the Passenger
|
354
|
+
website](https://www.phusionpassenger.com/support).
|
355
|
+
|
356
|
+
|
305
357
|
### Running the app with Puma
|
306
358
|
|
307
359
|
Puma has a command line interface for starting your application:
|
data/examples/client.rb
CHANGED
@@ -7,23 +7,24 @@ port = ARGV[0] || 7000
|
|
7
7
|
secure = ARGV[1] == 'ssl'
|
8
8
|
|
9
9
|
EM.run {
|
10
|
-
scheme
|
11
|
-
url
|
12
|
-
|
10
|
+
scheme = secure ? 'wss' : 'ws'
|
11
|
+
url = "#{scheme}://localhost:#{port}/"
|
12
|
+
headers = {'Origin' => 'http://faye.jcoglan.com'}
|
13
|
+
ws = Faye::WebSocket::Client.new(url, nil, :headers => headers)
|
13
14
|
|
14
|
-
puts "Connecting to #{
|
15
|
+
puts "Connecting to #{ws.url}"
|
15
16
|
|
16
|
-
|
17
|
+
ws.onopen = lambda do |event|
|
17
18
|
p [:open]
|
18
|
-
|
19
|
+
ws.send("Hello, WebSocket!")
|
19
20
|
end
|
20
21
|
|
21
|
-
|
22
|
+
ws.onmessage = lambda do |event|
|
22
23
|
p [:message, event.data]
|
23
|
-
#
|
24
|
+
# ws.close 1002, 'Going away'
|
24
25
|
end
|
25
26
|
|
26
|
-
|
27
|
+
ws.onclose = lambda do |event|
|
27
28
|
p [:close, event.code, event.reason]
|
28
29
|
EM.stop
|
29
30
|
end
|
@@ -0,0 +1,1246 @@
|
|
1
|
+
[ 2013-05-06 22:17:51.6293 16501/7fa54ec70740 agents/HelperAgent/Main.cpp:554 ]: PassengerHelperAgent online, listening at unix:/tmp/passenger.1.0.16497/generation-0/request.socket
|
2
|
+
[ 2013-05-06 22:17:51.6482 16507/7f7b8307f740 agents/LoggingAgent/Main.cpp:272 ]: PassengerLoggingAgent online, listening at unix:/tmp/passenger.1.0.16497/generation-0/logging.socket
|
3
|
+
[ 2013-05-06 22:17:53.6983 16501/7fa54eb20700 Pool2/Spawner.h:739 ]: [App 16526 stdout]
|
4
|
+
[ 2013-05-06 22:17:54.3528 16501/7fa54eb20700 Pool2/SmartSpawner.h:300 ]: Preloader for /home/james/projects/FAYE/websocket/ruby/examples started on PID 16526, listening on unix:/tmp/passenger.1.0.16497/generation-0/backends/preloader.16526
|
5
|
+
[ 2013-05-06 22:32:20.0464 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
6
|
+
[ 2013-05-06 22:32:20.0483 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
7
|
+
[ 2013-05-06 22:32:20.0536 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
8
|
+
[ 2013-05-06 22:32:20.0757 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
9
|
+
[ 2013-05-06 22:32:20.0807 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
10
|
+
[ 2013-05-06 22:32:20.0834 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
11
|
+
[ 2013-05-06 22:32:20.0876 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
12
|
+
[ 2013-05-06 22:32:20.0913 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
13
|
+
[ 2013-05-06 22:32:20.0952 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
14
|
+
[ 2013-05-06 22:32:20.0967 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
15
|
+
[ 2013-05-06 22:32:20.0999 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
16
|
+
[ 2013-05-06 22:32:20.1780 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
17
|
+
[ 2013-05-06 22:32:20.1986 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
18
|
+
[ 2013-05-06 22:32:20.2611 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
19
|
+
[ 2013-05-06 22:32:20.2682 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
20
|
+
[ 2013-05-06 22:32:20.3567 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
21
|
+
[ 2013-05-06 22:32:20.3620 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
22
|
+
[ 2013-05-06 22:32:20.3636 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
23
|
+
[ 2013-05-06 22:32:20.3675 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
24
|
+
[ 2013-05-06 22:32:20.3701 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
25
|
+
[ 2013-05-06 22:32:20.3756 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
26
|
+
[ 2013-05-06 22:32:20.3792 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
27
|
+
[ 2013-05-06 22:32:20.3849 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
28
|
+
[ 2013-05-06 22:32:20.3889 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
29
|
+
[ 2013-05-06 22:32:20.3943 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
30
|
+
[ 2013-05-06 22:32:20.3964 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
31
|
+
[ 2013-05-06 22:32:20.3990 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
32
|
+
[ 2013-05-06 22:32:20.4537 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
33
|
+
[ 2013-05-06 22:32:20.4825 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
34
|
+
[ 2013-05-06 22:32:20.5394 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
35
|
+
[ 2013-05-06 22:32:20.5668 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
36
|
+
[ 2013-05-06 22:32:20.6129 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
37
|
+
[ 2013-05-06 22:32:20.6418 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
38
|
+
[ 2013-05-06 22:32:20.6430 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
39
|
+
[ 2013-05-06 22:32:20.6482 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
40
|
+
[ 2013-05-06 22:32:20.6498 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
41
|
+
[ 2013-05-06 22:32:20.6566 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
42
|
+
[ 2013-05-06 22:32:20.6594 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
43
|
+
[ 2013-05-06 22:32:20.6655 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
44
|
+
[ 2013-05-06 22:32:20.6689 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
45
|
+
[ 2013-05-06 22:32:20.6882 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
46
|
+
[ 2013-05-06 22:32:20.6897 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Received control frame having too long payload: 126"]
|
47
|
+
[ 2013-05-06 22:32:20.6994 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
48
|
+
[ 2013-05-06 22:32:20.7183 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
49
|
+
[ 2013-05-06 22:32:20.7205 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
50
|
+
[ 2013-05-06 22:32:20.7213 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
51
|
+
[ 2013-05-06 22:32:20.7247 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
52
|
+
[ 2013-05-06 22:32:20.7255 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
53
|
+
[ 2013-05-06 22:32:20.7280 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
54
|
+
[ 2013-05-06 22:32:20.7294 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
55
|
+
[ 2013-05-06 22:32:20.7318 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
56
|
+
[ 2013-05-06 22:32:20.7347 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
57
|
+
[ 2013-05-06 22:32:20.7396 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
58
|
+
[ 2013-05-06 22:32:20.7615 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
59
|
+
[ 2013-05-06 22:32:20.7638 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
60
|
+
[ 2013-05-06 22:32:20.7643 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "One or more reserved bits are on: reserved1 = 0, reserved2 = 0, reserved3 = 1"]
|
61
|
+
[ 2013-05-06 22:32:20.7680 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
62
|
+
[ 2013-05-06 22:32:20.7686 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "One or more reserved bits are on: reserved1 = 0, reserved2 = 1, reserved3 = 0"]
|
63
|
+
[ 2013-05-06 22:32:20.7713 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
64
|
+
[ 2013-05-06 22:32:20.7722 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "One or more reserved bits are on: reserved1 = 0, reserved2 = 1, reserved3 = 1"]
|
65
|
+
[ 2013-05-06 22:32:20.7763 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
66
|
+
[ 2013-05-06 22:32:20.7791 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "One or more reserved bits are on: reserved1 = 1, reserved2 = 0, reserved3 = 0"]
|
67
|
+
2013/05/06 22:32:20 [error] 16516#0: *82 send() failed (32: Broken pipe) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.16497/generation-0/request.socket:", host: "127.0.0.1:8001"
|
68
|
+
[ 2013-05-06 22:32:20.7824 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
69
|
+
[ 2013-05-06 22:32:20.7831 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "One or more reserved bits are on: reserved1 = 1, reserved2 = 0, reserved3 = 1"]
|
70
|
+
[ 2013-05-06 22:32:20.7849 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
71
|
+
[ 2013-05-06 22:32:20.7854 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "One or more reserved bits are on: reserved1 = 1, reserved2 = 1, reserved3 = 0"]
|
72
|
+
[ 2013-05-06 22:32:20.7886 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
73
|
+
[ 2013-05-06 22:32:20.7891 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "One or more reserved bits are on: reserved1 = 1, reserved2 = 1, reserved3 = 1"]
|
74
|
+
[ 2013-05-06 22:32:20.7908 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
75
|
+
[ 2013-05-06 22:32:20.7915 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Unrecognized frame opcode: 3"]
|
76
|
+
[ 2013-05-06 22:32:20.7935 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
77
|
+
[ 2013-05-06 22:32:20.7940 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Unrecognized frame opcode: 4"]
|
78
|
+
[ 2013-05-06 22:32:20.7990 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
79
|
+
[ 2013-05-06 22:32:20.8035 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Unrecognized frame opcode: 5"]
|
80
|
+
[ 2013-05-06 22:32:20.8075 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
81
|
+
[ 2013-05-06 22:32:20.8089 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Unrecognized frame opcode: 6"]
|
82
|
+
[ 2013-05-06 22:32:20.8124 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
83
|
+
[ 2013-05-06 22:32:20.8177 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Unrecognized frame opcode: 7"]
|
84
|
+
[ 2013-05-06 22:32:20.8216 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
85
|
+
[ 2013-05-06 22:32:20.8225 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Unrecognized frame opcode: 11"]
|
86
|
+
[ 2013-05-06 22:32:20.8273 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
87
|
+
[ 2013-05-06 22:32:20.8287 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Unrecognized frame opcode: 12"]
|
88
|
+
[ 2013-05-06 22:32:20.8324 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
89
|
+
[ 2013-05-06 22:32:20.8334 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Unrecognized frame opcode: 13"]
|
90
|
+
2013/05/06 22:32:20 [error] 16516#0: *104 recv() failed (104: Connection reset by peer) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.16497/generation-0/request.socket:", host: "127.0.0.1:8001"
|
91
|
+
[ 2013-05-06 22:32:20.8368 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
92
|
+
[ 2013-05-06 22:32:20.8384 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Unrecognized frame opcode: 14"]
|
93
|
+
[ 2013-05-06 22:32:20.8432 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
94
|
+
[ 2013-05-06 22:32:20.8451 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Unrecognized frame opcode: 15"]
|
95
|
+
2013/05/06 22:32:20 [error] 16516#0: *108 recv() failed (104: Connection reset by peer) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.16497/generation-0/request.socket:", host: "127.0.0.1:8001"
|
96
|
+
[ 2013-05-06 22:32:20.8474 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
97
|
+
[ 2013-05-06 22:32:20.8479 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Received fragmented control frame: opcode = 9"]
|
98
|
+
[ 2013-05-06 22:32:20.8508 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
99
|
+
[ 2013-05-06 22:32:20.8517 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Received fragmented control frame: opcode = 10"]
|
100
|
+
2013/05/06 22:32:20 [error] 16516#0: *112 send() failed (32: Broken pipe) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.16497/generation-0/request.socket:", host: "127.0.0.1:8001"
|
101
|
+
[ 2013-05-06 22:32:20.8672 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
102
|
+
[ 2013-05-06 22:32:20.8692 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
103
|
+
[ 2013-05-06 22:32:20.8718 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
104
|
+
[ 2013-05-06 22:32:20.8733 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
105
|
+
[ 2013-05-06 22:32:20.8787 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
106
|
+
[ 2013-05-06 22:32:20.8833 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
107
|
+
[ 2013-05-06 22:32:20.8854 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
108
|
+
[ 2013-05-06 22:32:20.8867 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
109
|
+
[ 2013-05-06 22:32:20.8895 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
110
|
+
[ 2013-05-06 22:32:20.8912 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
111
|
+
[ 2013-05-06 22:32:20.8951 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
112
|
+
[ 2013-05-06 22:32:20.9015 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
113
|
+
[ 2013-05-06 22:32:20.9048 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
114
|
+
[ 2013-05-06 22:32:20.9054 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Received unexpected continuation frame"]
|
115
|
+
[ 2013-05-06 22:32:20.9090 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
116
|
+
[ 2013-05-06 22:32:20.9099 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Received unexpected continuation frame"]
|
117
|
+
[ 2013-05-06 22:32:20.9116 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
118
|
+
[ 2013-05-06 22:32:20.9175 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Received unexpected continuation frame"]
|
119
|
+
2013/05/06 22:32:20 [error] 16516#0: *130 send() failed (32: Broken pipe) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.16497/generation-0/request.socket:", host: "127.0.0.1:8001"
|
120
|
+
[ 2013-05-06 22:32:20.9234 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
121
|
+
[ 2013-05-06 22:32:20.9249 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Received unexpected continuation frame"]
|
122
|
+
[ 2013-05-06 22:32:20.9287 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
123
|
+
[ 2013-05-06 22:32:20.9296 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Received unexpected continuation frame"]
|
124
|
+
2013/05/06 22:32:20 [error] 16516#0: *134 send() failed (32: Broken pipe) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.16497/generation-0/request.socket:", host: "127.0.0.1:8001"
|
125
|
+
[ 2013-05-06 22:32:20.9319 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
126
|
+
[ 2013-05-06 22:32:20.9347 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Received unexpected continuation frame"]
|
127
|
+
2013/05/06 22:32:20 [error] 16516#0: *136 recv() failed (104: Connection reset by peer) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.16497/generation-0/request.socket:", host: "127.0.0.1:8001"
|
128
|
+
[ 2013-05-06 22:32:20.9368 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
129
|
+
[ 2013-05-06 22:32:20.9374 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Received unexpected continuation frame"]
|
130
|
+
[ 2013-05-06 22:32:20.9393 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
131
|
+
[ 2013-05-06 22:32:20.9398 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Received unexpected continuation frame"]
|
132
|
+
[ 2013-05-06 22:32:20.9417 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
133
|
+
[ 2013-05-06 22:32:20.9423 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Received unexpected continuation frame"]
|
134
|
+
[ 2013-05-06 22:32:20.9444 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
135
|
+
[ 2013-05-06 22:32:20.9449 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Received new data frame but previous continuous frame is unfinished"]
|
136
|
+
[ 2013-05-06 22:32:20.9466 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
137
|
+
[ 2013-05-06 22:32:21.9508 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
138
|
+
[ 2013-05-06 22:32:21.9564 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
139
|
+
[ 2013-05-06 22:32:22.9621 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
140
|
+
[ 2013-05-06 22:32:22.9678 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
141
|
+
[ 2013-05-06 22:32:22.9711 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
142
|
+
[ 2013-05-06 22:32:22.9768 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
143
|
+
[ 2013-05-06 22:32:22.9806 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
144
|
+
[ 2013-05-06 22:32:22.9868 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
145
|
+
[ 2013-05-06 22:32:22.9901 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
146
|
+
[ 2013-05-06 22:32:22.9960 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
147
|
+
[ 2013-05-06 22:32:22.9989 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
148
|
+
[ 2013-05-06 22:32:22.0017 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
149
|
+
[ 2013-05-06 22:32:22.0038 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
150
|
+
[ 2013-05-06 22:32:23.0070 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
151
|
+
[ 2013-05-06 22:32:23.0124 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
152
|
+
[ 2013-05-06 22:32:23.0159 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
153
|
+
[ 2013-05-06 22:32:23.0181 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
154
|
+
[ 2013-05-06 22:32:23.0203 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
155
|
+
[ 2013-05-06 22:32:23.0209 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
156
|
+
2013/05/06 22:32:23 [error] 16516#0: *164 send() failed (32: Broken pipe) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.16497/generation-0/request.socket:", host: "127.0.0.1:8001"
|
157
|
+
[ 2013-05-06 22:32:23.0230 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
158
|
+
[ 2013-05-06 22:32:23.0243 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
159
|
+
[ 2013-05-06 22:32:23.0412 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
160
|
+
[ 2013-05-06 22:32:25.0435 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
161
|
+
[ 2013-05-06 22:32:25.0492 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
162
|
+
[ 2013-05-06 22:32:27.0521 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
163
|
+
[ 2013-05-06 22:32:27.0581 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
164
|
+
[ 2013-05-06 22:32:29.0615 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
165
|
+
[ 2013-05-06 22:32:29.0677 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
166
|
+
[ 2013-05-06 22:32:31.0707 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
167
|
+
[ 2013-05-06 22:32:31.0775 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
168
|
+
[ 2013-05-06 22:32:31.0809 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
169
|
+
[ 2013-05-06 22:32:31.0865 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
170
|
+
[ 2013-05-06 22:32:31.0886 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
171
|
+
[ 2013-05-06 22:32:31.0943 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
172
|
+
[ 2013-05-06 22:32:31.0971 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
173
|
+
[ 2013-05-06 22:32:31.1085 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
174
|
+
[ 2013-05-06 22:32:31.1099 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
175
|
+
[ 2013-05-06 22:32:31.1132 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
176
|
+
[ 2013-05-06 22:32:31.1147 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
177
|
+
[ 2013-05-06 22:32:31.1181 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
178
|
+
[ 2013-05-06 22:32:31.1213 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
179
|
+
[ 2013-05-06 22:32:31.1244 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
180
|
+
[ 2013-05-06 22:32:31.1256 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
181
|
+
[ 2013-05-06 22:32:31.1297 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
182
|
+
[ 2013-05-06 22:32:31.1328 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
183
|
+
[ 2013-05-06 22:32:31.1378 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
184
|
+
[ 2013-05-06 22:32:31.1396 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
185
|
+
[ 2013-05-06 22:32:31.1465 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
186
|
+
[ 2013-05-06 22:32:31.1486 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
187
|
+
[ 2013-05-06 22:32:31.1522 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
188
|
+
[ 2013-05-06 22:32:31.1534 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
189
|
+
[ 2013-05-06 22:32:31.1560 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
190
|
+
[ 2013-05-06 22:32:31.1573 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
191
|
+
[ 2013-05-06 22:32:31.1612 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
192
|
+
[ 2013-05-06 22:32:31.1630 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
193
|
+
[ 2013-05-06 22:32:31.1648 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
194
|
+
[ 2013-05-06 22:32:31.1656 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
195
|
+
[ 2013-05-06 22:32:31.1673 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
196
|
+
[ 2013-05-06 22:32:31.1686 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
197
|
+
[ 2013-05-06 22:32:31.1712 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
198
|
+
[ 2013-05-06 22:32:31.1726 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
199
|
+
[ 2013-05-06 22:32:31.1773 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
200
|
+
[ 2013-05-06 22:32:31.1783 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
201
|
+
[ 2013-05-06 22:32:31.1807 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
202
|
+
[ 2013-05-06 22:32:31.1818 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
203
|
+
[ 2013-05-06 22:32:31.1842 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
204
|
+
[ 2013-05-06 22:32:31.1858 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
205
|
+
[ 2013-05-06 22:32:31.1890 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
206
|
+
[ 2013-05-06 22:32:31.1908 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
207
|
+
[ 2013-05-06 22:32:31.1944 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
208
|
+
[ 2013-05-06 22:32:31.1965 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
209
|
+
[ 2013-05-06 22:32:31.2005 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
210
|
+
[ 2013-05-06 22:32:31.2028 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
211
|
+
[ 2013-05-06 22:32:31.2073 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
212
|
+
[ 2013-05-06 22:32:31.2081 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
213
|
+
[ 2013-05-06 22:32:31.2199 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
214
|
+
[ 2013-05-06 22:32:31.2207 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
215
|
+
[ 2013-05-06 22:32:31.2225 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
216
|
+
[ 2013-05-06 22:32:31.2232 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
217
|
+
[ 2013-05-06 22:32:31.2251 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
218
|
+
[ 2013-05-06 22:32:31.2260 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
219
|
+
[ 2013-05-06 22:32:31.2278 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
220
|
+
[ 2013-05-06 22:32:31.2287 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
221
|
+
[ 2013-05-06 22:32:31.2309 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
222
|
+
[ 2013-05-06 22:32:31.2323 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
223
|
+
[ 2013-05-06 22:32:31.2348 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
224
|
+
[ 2013-05-06 22:32:31.2360 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
225
|
+
[ 2013-05-06 22:32:31.2381 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
226
|
+
[ 2013-05-06 22:32:31.2391 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
227
|
+
[ 2013-05-06 22:32:31.2410 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
228
|
+
[ 2013-05-06 22:32:31.2415 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
229
|
+
[ 2013-05-06 22:32:31.2433 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
230
|
+
[ 2013-05-06 22:32:31.2438 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
231
|
+
[ 2013-05-06 22:32:31.2457 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
232
|
+
[ 2013-05-06 22:32:31.2463 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
233
|
+
2013/05/06 22:32:31 [error] 16516#0: *240 recv() failed (104: Connection reset by peer) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.16497/generation-0/request.socket:", host: "127.0.0.1:8001"
|
234
|
+
[ 2013-05-06 22:32:31.2481 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
235
|
+
[ 2013-05-06 22:32:31.2491 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
236
|
+
2013/05/06 22:32:31 [error] 16516#0: *242 recv() failed (104: Connection reset by peer) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.16497/generation-0/request.socket:", host: "127.0.0.1:8001"
|
237
|
+
[ 2013-05-06 22:32:31.2511 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
238
|
+
[ 2013-05-06 22:32:31.2517 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
239
|
+
[ 2013-05-06 22:32:31.2536 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
240
|
+
[ 2013-05-06 22:32:31.2542 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
241
|
+
[ 2013-05-06 22:32:31.2562 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
242
|
+
[ 2013-05-06 22:32:31.2569 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
243
|
+
2013/05/06 22:32:31 [error] 16516#0: *248 recv() failed (104: Connection reset by peer) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.16497/generation-0/request.socket:", host: "127.0.0.1:8001"
|
244
|
+
[ 2013-05-06 22:32:31.2589 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
245
|
+
[ 2013-05-06 22:32:31.2639 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
246
|
+
[ 2013-05-06 22:32:31.2639 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
247
|
+
[ 2013-05-06 22:32:31.2639 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
248
|
+
[ 2013-05-06 22:32:31.2652 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
249
|
+
[ 2013-05-06 22:32:31.2663 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
250
|
+
[ 2013-05-06 22:32:31.2684 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
251
|
+
[ 2013-05-06 22:32:31.2693 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
252
|
+
[ 2013-05-06 22:32:31.2716 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
253
|
+
[ 2013-05-06 22:32:31.2722 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
254
|
+
2013/05/06 22:32:31 [error] 16516#0: *258 recv() failed (104: Connection reset by peer) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.16497/generation-0/request.socket:", host: "127.0.0.1:8001"
|
255
|
+
[ 2013-05-06 22:32:31.2740 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
256
|
+
[ 2013-05-06 22:32:31.2745 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
257
|
+
[ 2013-05-06 22:32:31.2762 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
258
|
+
[ 2013-05-06 22:32:31.2767 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
259
|
+
[ 2013-05-06 22:32:31.2783 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
260
|
+
[ 2013-05-06 22:32:31.2788 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
261
|
+
[ 2013-05-06 22:32:31.2805 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
262
|
+
[ 2013-05-06 22:32:31.2810 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
263
|
+
[ 2013-05-06 22:32:31.2826 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
264
|
+
[ 2013-05-06 22:32:31.2832 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
265
|
+
[ 2013-05-06 22:32:31.2850 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
266
|
+
[ 2013-05-06 22:32:31.2856 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
267
|
+
[ 2013-05-06 22:32:31.2877 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
268
|
+
[ 2013-05-06 22:32:31.2883 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
269
|
+
[ 2013-05-06 22:32:31.2902 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
270
|
+
[ 2013-05-06 22:32:31.2909 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
271
|
+
[ 2013-05-06 22:32:31.3048 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
272
|
+
[ 2013-05-06 22:32:31.3057 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
273
|
+
2013/05/06 22:32:31 [error] 16516#0: *276 recv() failed (104: Connection reset by peer) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.16497/generation-0/request.socket:", host: "127.0.0.1:8001"
|
274
|
+
[ 2013-05-06 22:32:31.3079 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
275
|
+
[ 2013-05-06 22:32:31.3086 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
276
|
+
[ 2013-05-06 22:32:31.3106 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
277
|
+
[ 2013-05-06 22:32:31.3112 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
278
|
+
[ 2013-05-06 22:32:31.3130 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
279
|
+
[ 2013-05-06 22:32:31.3137 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
280
|
+
[ 2013-05-06 22:32:31.3156 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
281
|
+
[ 2013-05-06 22:32:31.3162 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
282
|
+
[ 2013-05-06 22:32:31.3180 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
283
|
+
[ 2013-05-06 22:32:31.3186 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
284
|
+
[ 2013-05-06 22:32:31.3203 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
285
|
+
[ 2013-05-06 22:32:31.3209 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
286
|
+
[ 2013-05-06 22:32:31.3231 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
287
|
+
[ 2013-05-06 22:32:31.3243 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
288
|
+
[ 2013-05-06 22:32:31.3262 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
289
|
+
[ 2013-05-06 22:32:31.3270 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
290
|
+
[ 2013-05-06 22:32:31.3291 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
291
|
+
[ 2013-05-06 22:32:31.3300 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
292
|
+
[ 2013-05-06 22:32:31.3320 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
293
|
+
[ 2013-05-06 22:32:31.3325 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
294
|
+
[ 2013-05-06 22:32:31.3344 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
295
|
+
[ 2013-05-06 22:32:31.3349 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
296
|
+
[ 2013-05-06 22:32:31.3370 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
297
|
+
[ 2013-05-06 22:32:31.3375 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
298
|
+
[ 2013-05-06 22:32:31.3393 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
299
|
+
[ 2013-05-06 22:32:31.3399 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
300
|
+
[ 2013-05-06 22:32:31.3419 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
301
|
+
[ 2013-05-06 22:32:31.3424 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
302
|
+
[ 2013-05-06 22:32:31.3443 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
303
|
+
[ 2013-05-06 22:32:31.3448 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
304
|
+
[ 2013-05-06 22:32:31.3466 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
305
|
+
[ 2013-05-06 22:32:31.3472 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
306
|
+
[ 2013-05-06 22:32:31.3489 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
307
|
+
[ 2013-05-06 22:32:31.3495 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
308
|
+
[ 2013-05-06 22:32:31.3514 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
309
|
+
[ 2013-05-06 22:32:31.3521 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
310
|
+
[ 2013-05-06 22:32:31.3543 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
311
|
+
[ 2013-05-06 22:32:31.3557 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
312
|
+
[ 2013-05-06 22:32:31.3578 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
313
|
+
[ 2013-05-06 22:32:31.3586 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
314
|
+
[ 2013-05-06 22:32:31.3614 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
315
|
+
[ 2013-05-06 22:32:31.3619 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
316
|
+
[ 2013-05-06 22:32:31.3638 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
317
|
+
[ 2013-05-06 22:32:31.3644 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
318
|
+
2013/05/06 22:32:31 [error] 16516#0: *320 recv() failed (104: Connection reset by peer) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.16497/generation-0/request.socket:", host: "127.0.0.1:8001"
|
319
|
+
[ 2013-05-06 22:32:31.3664 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
320
|
+
[ 2013-05-06 22:32:31.3670 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
321
|
+
[ 2013-05-06 22:32:31.3687 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
322
|
+
[ 2013-05-06 22:32:31.3693 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
323
|
+
[ 2013-05-06 22:32:31.3710 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
324
|
+
[ 2013-05-06 22:32:31.3715 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
325
|
+
2013/05/06 22:32:31 [error] 16516#0: *326 recv() failed (104: Connection reset by peer) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.16497/generation-0/request.socket:", host: "127.0.0.1:8001"
|
326
|
+
[ 2013-05-06 22:32:31.3733 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
327
|
+
[ 2013-05-06 22:32:31.3740 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
328
|
+
2013/05/06 22:32:31 [error] 16516#0: *328 send() failed (32: Broken pipe) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.16497/generation-0/request.socket:", host: "127.0.0.1:8001"
|
329
|
+
[ 2013-05-06 22:32:31.3878 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
330
|
+
[ 2013-05-06 22:32:31.3887 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
331
|
+
[ 2013-05-06 22:32:31.3913 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
332
|
+
[ 2013-05-06 22:32:31.3921 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
333
|
+
2013/05/06 22:32:31 [error] 16516#0: *332 send() failed (32: Broken pipe) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.16497/generation-0/request.socket:", host: "127.0.0.1:8001"
|
334
|
+
[ 2013-05-06 22:32:31.3948 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
335
|
+
[ 2013-05-06 22:32:31.3955 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
336
|
+
[ 2013-05-06 22:32:31.3974 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
337
|
+
[ 2013-05-06 22:32:31.3979 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
338
|
+
[ 2013-05-06 22:32:31.3999 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
339
|
+
[ 2013-05-06 22:32:31.4005 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
340
|
+
[ 2013-05-06 22:32:31.4024 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
341
|
+
[ 2013-05-06 22:32:31.4029 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
342
|
+
[ 2013-05-06 22:32:31.4046 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
343
|
+
[ 2013-05-06 22:32:31.4052 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
344
|
+
[ 2013-05-06 22:32:31.4071 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
345
|
+
[ 2013-05-06 22:32:31.4076 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
346
|
+
[ 2013-05-06 22:32:31.4093 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
347
|
+
[ 2013-05-06 22:32:31.4098 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
348
|
+
[ 2013-05-06 22:32:31.4119 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
349
|
+
[ 2013-05-06 22:32:31.4125 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
350
|
+
[ 2013-05-06 22:32:31.4151 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
351
|
+
[ 2013-05-06 22:32:31.4167 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
352
|
+
[ 2013-05-06 22:32:31.4191 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
353
|
+
[ 2013-05-06 22:32:31.4205 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
354
|
+
[ 2013-05-06 22:32:31.4228 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
355
|
+
[ 2013-05-06 22:32:31.4239 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
356
|
+
[ 2013-05-06 22:32:31.4260 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
357
|
+
[ 2013-05-06 22:32:31.4270 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
358
|
+
[ 2013-05-06 22:32:31.4288 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
359
|
+
[ 2013-05-06 22:32:31.4297 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
360
|
+
[ 2013-05-06 22:32:31.4316 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
361
|
+
[ 2013-05-06 22:32:31.4325 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
362
|
+
[ 2013-05-06 22:32:31.4342 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
363
|
+
[ 2013-05-06 22:32:31.4352 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
364
|
+
[ 2013-05-06 22:32:31.4370 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
365
|
+
[ 2013-05-06 22:32:31.4379 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
366
|
+
[ 2013-05-06 22:32:31.4397 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
367
|
+
[ 2013-05-06 22:32:31.4406 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
368
|
+
[ 2013-05-06 22:32:31.4423 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
369
|
+
[ 2013-05-06 22:32:31.4435 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
370
|
+
[ 2013-05-06 22:32:31.4459 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
371
|
+
[ 2013-05-06 22:32:31.4471 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
372
|
+
[ 2013-05-06 22:32:31.4495 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
373
|
+
[ 2013-05-06 22:32:31.4509 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
374
|
+
[ 2013-05-06 22:32:31.4532 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
375
|
+
[ 2013-05-06 22:32:31.4542 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
376
|
+
[ 2013-05-06 22:32:31.4560 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
377
|
+
[ 2013-05-06 22:32:31.4570 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
378
|
+
[ 2013-05-06 22:32:31.4588 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
379
|
+
[ 2013-05-06 22:32:31.4597 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
380
|
+
[ 2013-05-06 22:32:31.4617 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
381
|
+
[ 2013-05-06 22:32:31.4626 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
382
|
+
[ 2013-05-06 22:32:31.4645 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
383
|
+
[ 2013-05-06 22:32:31.4655 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
384
|
+
[ 2013-05-06 22:32:31.4795 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
385
|
+
[ 2013-05-06 22:32:31.4809 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
386
|
+
[ 2013-05-06 22:32:31.4835 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
387
|
+
[ 2013-05-06 22:32:31.4847 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
388
|
+
[ 2013-05-06 22:32:31.4866 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
389
|
+
[ 2013-05-06 22:32:31.4874 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
390
|
+
[ 2013-05-06 22:32:31.4891 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
391
|
+
[ 2013-05-06 22:32:31.4902 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
392
|
+
[ 2013-05-06 22:32:31.4921 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
393
|
+
[ 2013-05-06 22:32:31.4930 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
394
|
+
[ 2013-05-06 22:32:31.4948 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
395
|
+
[ 2013-05-06 22:32:31.4957 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
396
|
+
[ 2013-05-06 22:32:31.4975 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
397
|
+
[ 2013-05-06 22:32:31.4985 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
398
|
+
[ 2013-05-06 22:32:31.5005 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
399
|
+
[ 2013-05-06 22:32:31.5014 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
400
|
+
[ 2013-05-06 22:32:31.5032 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
401
|
+
[ 2013-05-06 22:32:31.5043 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
402
|
+
[ 2013-05-06 22:32:31.5068 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
403
|
+
[ 2013-05-06 22:32:31.5083 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
404
|
+
[ 2013-05-06 22:32:31.5107 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
405
|
+
[ 2013-05-06 22:32:31.5122 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
406
|
+
[ 2013-05-06 22:32:31.5144 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
407
|
+
[ 2013-05-06 22:32:31.5154 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
408
|
+
[ 2013-05-06 22:32:31.5173 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
409
|
+
[ 2013-05-06 22:32:31.5183 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
410
|
+
[ 2013-05-06 22:32:31.5201 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
411
|
+
[ 2013-05-06 22:32:31.5212 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
412
|
+
[ 2013-05-06 22:32:31.5230 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
413
|
+
[ 2013-05-06 22:32:31.5239 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
414
|
+
[ 2013-05-06 22:32:31.5256 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
415
|
+
[ 2013-05-06 22:32:31.5265 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
416
|
+
[ 2013-05-06 22:32:31.5282 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
417
|
+
[ 2013-05-06 22:32:31.5291 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
418
|
+
[ 2013-05-06 22:32:31.5308 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
419
|
+
[ 2013-05-06 22:32:31.5317 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
420
|
+
[ 2013-05-06 22:32:31.5334 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
421
|
+
[ 2013-05-06 22:32:31.5344 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
422
|
+
[ 2013-05-06 22:32:31.5370 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
423
|
+
[ 2013-05-06 22:32:31.5378 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
424
|
+
[ 2013-05-06 22:32:31.5402 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
425
|
+
[ 2013-05-06 22:32:31.5412 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
426
|
+
[ 2013-05-06 22:32:31.5438 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
427
|
+
[ 2013-05-06 22:32:31.5445 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
428
|
+
[ 2013-05-06 22:32:31.5464 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
429
|
+
[ 2013-05-06 22:32:31.5470 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
430
|
+
[ 2013-05-06 22:32:31.5488 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
431
|
+
[ 2013-05-06 22:32:31.7185 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
432
|
+
[ 2013-05-06 22:32:31.8210 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
433
|
+
[ 2013-05-06 22:32:31.8219 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
434
|
+
[ 2013-05-06 22:32:31.8243 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
435
|
+
[ 2013-05-06 22:32:31.8252 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, ""]
|
436
|
+
[ 2013-05-06 22:32:31.8281 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
437
|
+
[ 2013-05-06 22:32:31.8287 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
438
|
+
[ 2013-05-06 22:32:31.8320 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
439
|
+
[ 2013-05-06 22:32:31.8340 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, "Hello World!"]
|
440
|
+
[ 2013-05-06 22:32:31.8372 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
441
|
+
[ 2013-05-06 22:32:31.8384 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, "***************************************************************************************************************************"]
|
442
|
+
[ 2013-05-06 22:32:31.8412 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
443
|
+
[ 2013-05-06 22:32:31.8420 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, "Received control frame having too long payload: 126"]
|
444
|
+
[ 2013-05-06 22:32:31.8479 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
445
|
+
[ 2013-05-06 22:32:31.8494 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, ""]
|
446
|
+
[ 2013-05-06 22:32:31.8541 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
447
|
+
[ 2013-05-06 22:32:31.8558 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
448
|
+
[ 2013-05-06 22:32:31.8593 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
449
|
+
[ 2013-05-06 22:32:31.8601 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1001, ""]
|
450
|
+
[ 2013-05-06 22:32:31.8627 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
451
|
+
[ 2013-05-06 22:32:31.8642 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, ""]
|
452
|
+
[ 2013-05-06 22:32:31.8684 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
453
|
+
[ 2013-05-06 22:32:31.8698 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1003, ""]
|
454
|
+
[ 2013-05-06 22:32:31.8733 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
455
|
+
[ 2013-05-06 22:32:31.8739 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1007, ""]
|
456
|
+
[ 2013-05-06 22:32:31.8782 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
457
|
+
[ 2013-05-06 22:32:31.8796 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1008, ""]
|
458
|
+
[ 2013-05-06 22:32:31.8839 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
459
|
+
[ 2013-05-06 22:32:31.8854 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1009, ""]
|
460
|
+
[ 2013-05-06 22:32:31.8907 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
461
|
+
[ 2013-05-06 22:32:31.8924 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1010, ""]
|
462
|
+
[ 2013-05-06 22:32:31.8975 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
463
|
+
[ 2013-05-06 22:32:31.8988 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1011, ""]
|
464
|
+
[ 2013-05-06 22:32:31.9023 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
465
|
+
[ 2013-05-06 22:32:31.9032 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 3000, ""]
|
466
|
+
[ 2013-05-06 22:32:31.9069 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
467
|
+
[ 2013-05-06 22:32:31.9077 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 3999, ""]
|
468
|
+
[ 2013-05-06 22:32:31.9099 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
469
|
+
[ 2013-05-06 22:32:31.9104 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 4000, ""]
|
470
|
+
[ 2013-05-06 22:32:31.9145 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
471
|
+
[ 2013-05-06 22:32:31.9154 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 4999, ""]
|
472
|
+
[ 2013-05-06 22:32:31.9183 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
473
|
+
[ 2013-05-06 22:32:31.9192 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, ""]
|
474
|
+
[ 2013-05-06 22:32:31.9224 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
475
|
+
[ 2013-05-06 22:32:31.9232 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, ""]
|
476
|
+
[ 2013-05-06 22:32:31.9255 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
477
|
+
[ 2013-05-06 22:32:31.9262 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, ""]
|
478
|
+
[ 2013-05-06 22:32:31.9286 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
479
|
+
[ 2013-05-06 22:32:31.9296 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, ""]
|
480
|
+
[ 2013-05-06 22:32:31.9326 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
481
|
+
[ 2013-05-06 22:32:31.9334 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, ""]
|
482
|
+
[ 2013-05-06 22:32:31.9354 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
483
|
+
[ 2013-05-06 22:32:31.9364 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, ""]
|
484
|
+
[ 2013-05-06 22:32:31.9396 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
485
|
+
[ 2013-05-06 22:32:31.9402 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, ""]
|
486
|
+
[ 2013-05-06 22:32:31.9433 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
487
|
+
[ 2013-05-06 22:32:31.9444 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, ""]
|
488
|
+
[ 2013-05-06 22:32:31.9482 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
489
|
+
[ 2013-05-06 22:32:31.9493 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, ""]
|
490
|
+
[ 2013-05-06 22:32:31.9540 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
491
|
+
[ 2013-05-06 22:32:31.9551 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, ""]
|
492
|
+
[ 2013-05-06 22:32:31.9591 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
493
|
+
[ 2013-05-06 22:32:31.9600 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, ""]
|
494
|
+
[ 2013-05-06 22:32:31.9636 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
495
|
+
[ 2013-05-06 22:32:31.9647 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, ""]
|
496
|
+
[ 2013-05-06 22:32:31.9683 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
497
|
+
[ 2013-05-06 22:32:31.9691 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, ""]
|
498
|
+
[ 2013-05-06 22:32:31.9731 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
499
|
+
[ 2013-05-06 22:32:31.9737 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, ""]
|
500
|
+
[ 2013-05-06 22:32:31.9775 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
501
|
+
[ 2013-05-06 22:32:31.9781 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1002, ""]
|
502
|
+
[ 2013-05-06 22:32:31.9803 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
503
|
+
[ 2013-05-06 22:32:32.0717 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
504
|
+
[ 2013-05-06 22:32:32.0772 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
505
|
+
[ 2013-05-06 22:32:32.3407 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
506
|
+
[ 2013-05-06 22:32:32.3444 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
507
|
+
[ 2013-05-06 22:32:33.3456 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
508
|
+
[ 2013-05-06 22:32:33.3515 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
509
|
+
[ 2013-05-06 22:32:37.1706 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
510
|
+
[ 2013-05-06 22:32:37.1784 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
511
|
+
[ 2013-05-06 22:32:44.6148 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
512
|
+
[ 2013-05-06 22:32:44.6241 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
513
|
+
[ 2013-05-06 22:32:59.8819 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
514
|
+
[ 2013-05-06 22:32:59.8960 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
515
|
+
[ 2013-05-06 22:32:59.9473 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
516
|
+
[ 2013-05-06 22:32:59.9503 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
517
|
+
[ 2013-05-06 22:33:00.0690 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
518
|
+
[ 2013-05-06 22:33:00.0740 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
519
|
+
[ 2013-05-06 22:33:00.4910 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
520
|
+
[ 2013-05-06 22:33:00.4959 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
521
|
+
[ 2013-05-06 22:33:02.1502 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
522
|
+
[ 2013-05-06 22:33:02.1532 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
523
|
+
[ 2013-05-06 22:33:05.4533 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
524
|
+
[ 2013-05-06 22:33:05.4585 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
525
|
+
[ 2013-05-06 22:33:12.0616 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
526
|
+
[ 2013-05-06 22:33:12.0673 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
527
|
+
[ 2013-05-06 22:33:18.0922 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
528
|
+
[ 2013-05-06 22:33:18.1011 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
529
|
+
[ 2013-05-06 22:33:22.3656 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
530
|
+
[ 2013-05-06 22:33:22.3720 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
531
|
+
[ 2013-05-06 22:33:26.1712 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
532
|
+
[ 2013-05-06 22:33:26.1780 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
533
|
+
[ 2013-05-06 22:33:29.8152 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
534
|
+
[ 2013-05-06 22:33:29.8233 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
535
|
+
[ 2013-05-06 22:33:33.4110 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
536
|
+
[ 2013-05-06 22:33:33.4179 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
537
|
+
[ 2013-05-06 22:33:37.0288 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
538
|
+
[ 2013-05-06 22:33:37.0356 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
539
|
+
[ 2013-05-06 22:33:40.6947 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
540
|
+
[ 2013-05-06 22:33:40.7012 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
541
|
+
[ 2013-05-06 22:33:44.3068 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
542
|
+
[ 2013-05-06 22:33:44.3135 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
543
|
+
[ 2013-05-06 22:33:47.0041 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
544
|
+
[ 2013-05-06 22:33:48.0075 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
545
|
+
[ 2013-05-06 22:33:51.9237 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
546
|
+
[ 2013-05-06 22:33:51.9265 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
547
|
+
[ 2013-05-06 22:33:54.0643 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
548
|
+
[ 2013-05-06 22:33:54.0689 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
549
|
+
[ 2013-05-06 22:33:55.7786 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
550
|
+
[ 2013-05-06 22:33:55.7830 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
551
|
+
[ 2013-05-06 22:33:57.3588 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
552
|
+
[ 2013-05-06 22:33:57.3618 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
553
|
+
[ 2013-05-06 22:33:58.9349 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
554
|
+
[ 2013-05-06 22:33:58.9371 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
555
|
+
[ 2013-05-06 22:34:00.5273 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
556
|
+
[ 2013-05-06 22:34:00.5305 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
557
|
+
[ 2013-05-06 22:34:02.0510 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
558
|
+
[ 2013-05-06 22:34:02.0565 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
559
|
+
[ 2013-05-06 22:34:03.6070 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
560
|
+
[ 2013-05-06 22:34:03.6102 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
561
|
+
[ 2013-05-06 22:34:05.1514 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
562
|
+
[ 2013-05-06 22:34:05.1546 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
563
|
+
[ 2013-05-06 22:34:06.7961 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
564
|
+
[ 2013-05-06 22:34:06.8005 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
565
|
+
[ 2013-05-06 22:34:08.0137 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
566
|
+
[ 2013-05-06 22:34:08.0182 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
567
|
+
[ 2013-05-06 22:34:09.0633 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
568
|
+
[ 2013-05-06 22:34:09.0681 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
569
|
+
[ 2013-05-06 22:34:10.0214 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
570
|
+
[ 2013-05-06 22:34:10.0258 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
571
|
+
[ 2013-05-06 22:34:10.9517 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
572
|
+
[ 2013-05-06 22:34:10.9577 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
573
|
+
[ 2013-05-06 22:34:11.8578 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
574
|
+
[ 2013-05-06 22:34:11.8620 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
575
|
+
[ 2013-05-06 22:34:13.0094 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
576
|
+
[ 2013-05-06 22:34:13.0133 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
577
|
+
[ 2013-05-06 22:34:13.7330 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
578
|
+
[ 2013-05-06 22:34:13.7368 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
579
|
+
[ 2013-05-06 22:34:14.2652 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
580
|
+
[ 2013-05-06 22:34:14.2695 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
581
|
+
[ 2013-05-06 22:34:14.6856 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
582
|
+
[ 2013-05-06 22:34:14.6911 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
583
|
+
[ 2013-05-06 22:34:15.1218 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
584
|
+
[ 2013-05-06 22:34:15.1271 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
585
|
+
[ 2013-05-06 22:34:15.5365 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
586
|
+
[ 2013-05-06 22:34:15.5409 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
587
|
+
[ 2013-05-06 22:34:16.3117 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
588
|
+
[ 2013-05-06 22:34:16.3172 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
589
|
+
[ 2013-05-06 22:34:17.2596 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
590
|
+
[ 2013-05-06 22:34:17.2650 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
591
|
+
[ 2013-05-06 22:34:18.4357 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
592
|
+
[ 2013-05-06 22:34:18.4411 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
593
|
+
[ 2013-05-06 22:34:20.4034 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
594
|
+
[ 2013-05-06 22:34:20.4089 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
595
|
+
[ 2013-05-06 22:34:23.3996 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
596
|
+
[ 2013-05-06 22:34:23.4051 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
597
|
+
[ 2013-05-06 22:34:29.8343 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
598
|
+
[ 2013-05-06 22:34:29.8399 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
599
|
+
[ 2013-05-06 22:34:30.5528 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
600
|
+
[ 2013-05-06 22:34:30.5584 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
601
|
+
[ 2013-05-06 22:34:31.4001 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
602
|
+
[ 2013-05-06 22:34:31.4055 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
603
|
+
[ 2013-05-06 22:34:32.3943 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
604
|
+
[ 2013-05-06 22:34:32.3999 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
605
|
+
[ 2013-05-06 22:34:33.6613 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
606
|
+
[ 2013-05-06 22:34:33.6669 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
607
|
+
[ 2013-05-06 22:34:36.2479 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
608
|
+
[ 2013-05-06 22:34:36.2499 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
609
|
+
[ 2013-05-06 22:34:40.1930 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
610
|
+
[ 2013-05-06 22:34:40.1978 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
611
|
+
[ 2013-05-06 22:34:40.2778 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1000, ""]
|
612
|
+
[ 2013-05-06 22:36:00.6178 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://192.168.1.70:8001/", "hybi-13", "xmpp"]
|
613
|
+
[ 2013-05-06 22:36:00.6227 16501/7fa54eb61700 Pool2/Spawner.h:739 ]: [App 18289 stdout]
|
614
|
+
[ 2013-05-06 22:36:01.2584 16501/7fa54eb61700 Pool2/SmartSpawner.h:300 ]: Preloader for /home/james/projects/FAYE/websocket/ruby/examples started on PID 18289, listening on unix:/tmp/passenger.1.0.16497/generation-0/backends/preloader.18289
|
615
|
+
[ 2013-05-06 22:36:03.1977 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1006, ""]
|
616
|
+
[ 2013-05-06 22:36:11.5691 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://192.168.1.70:8001/", "hixie-76", ""]
|
617
|
+
[ 2013-05-06 22:36:11.5777 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1006, ""]
|
618
|
+
[ 2013-05-06 22:36:32.3058 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:open, "ws://192.168.1.70:8001/", "hixie-76", ""]
|
619
|
+
[ 2013-05-06 22:36:52.0452 16501/7fa54c440700 Pool2/Implementation.cpp:1156 ]: [App 16545 stdout] [:close, 1006, ""]
|
620
|
+
[ 2013-05-08 18:07:24.0158 16501/7fa54ec04700 Pool2/Pool.h:684 ]: Process (pid=18308, group=/home/james/projects/FAYE/websocket/ruby/examples#default) no longer exists! Detaching it from the pool.
|
621
|
+
[ 2013-05-08 18:07:24.0304 16501/7fa54c3ff700 Pool2/Spawner.h:739 ]: [App 9174 stdout]
|
622
|
+
[ 2013-05-08 18:07:24.7604 16501/7fa54c3ff700 Pool2/SmartSpawner.h:300 ]: Preloader for /home/james/projects/FAYE/websocket/ruby/examples started on PID 9174, listening on unix:/tmp/passenger.1.0.16497/generation-0/backends/preloader.9174
|
623
|
+
[ 2013-05-12 16:16:41.8270 10526/7f20a0009740 agents/HelperAgent/Main.cpp:554 ]: PassengerHelperAgent online, listening at unix:/tmp/passenger.1.0.10522/generation-0/request.socket
|
624
|
+
[ 2013-05-12 16:16:41.8463 10532/7f133ce74740 agents/LoggingAgent/Main.cpp:272 ]: PassengerLoggingAgent online, listening at unix:/tmp/passenger.1.0.10522/generation-0/logging.socket
|
625
|
+
[ 2013-05-12 16:16:43.0054 10526/7f209feb9700 Pool2/Spawner.h:739 ]: [App 10562 stdout]
|
626
|
+
[ 2013-05-12 16:16:44.1862 10526/7f209fe78700 Pool2/Spawner.h:159 ]: [App 10562 stderr] *** Phusion Passenger: no passenger_native_support.so found for the current Ruby interpreter. Compiling one...
|
627
|
+
[ 2013-05-12 16:16:44.1864 10526/7f209fe78700 Pool2/Spawner.h:159 ]: [App 10562 stderr] # mkdir -p /tmp/passenger-standalone.3229/locations.ini/libout/ruby/ruby-1.9.3-x86_64-linux
|
628
|
+
[ 2013-05-12 16:16:44.1867 10526/7f209fe78700 Pool2/Spawner.h:159 ]: [App 10562 stderr] Not a valid directory. Trying a different one...
|
629
|
+
[ 2013-05-12 16:16:44.1867 10526/7f209fe78700 Pool2/Spawner.h:159 ]: [App 10562 stderr] -------------------------------
|
630
|
+
[ 2013-05-12 16:16:44.1867 10526/7f209fe78700 Pool2/Spawner.h:159 ]: [App 10562 stderr] # mkdir -p /home/james/.passenger/native_support/4.0.2/ruby-1.9.3-x86_64-linux
|
631
|
+
[ 2013-05-12 16:16:44.1870 10526/7f209fe78700 Pool2/Spawner.h:159 ]: [App 10562 stderr] # cd /home/james/.passenger/native_support/4.0.2/ruby-1.9.3-x86_64-linux
|
632
|
+
[ 2013-05-12 16:16:44.1871 10526/7f209fe78700 Pool2/Spawner.h:159 ]: [App 10562 stderr] # /opt/rubies/1.9.3-p392/bin/ruby '/home/james/projects/FAYE/websocket/ruby/.bundle/ruby/1.9.1/gems/passenger-4.0.2/ext/ruby/extconf.rb'
|
633
|
+
[ 2013-05-12 16:16:44.4640 10526/7f209feb9700 Pool2/Spawner.h:739 ]: [App 10562 stdout] checking for alloca.h... yes
|
634
|
+
[ 2013-05-12 16:16:44.4975 10526/7f209feb9700 Pool2/Spawner.h:739 ]: [App 10562 stdout] checking for ruby/io.h... yes
|
635
|
+
[ 2013-05-12 16:16:44.4976 10526/7f209feb9700 Pool2/Spawner.h:739 ]: [App 10562 stdout] creating Makefile
|
636
|
+
[ 2013-05-12 16:16:44.5115 10526/7f209fe78700 Pool2/Spawner.h:159 ]: [App 10562 stderr] # make
|
637
|
+
[ 2013-05-12 16:16:44.5208 10526/7f209feb9700 Pool2/Spawner.h:739 ]: [App 10562 stdout] compiling /home/james/projects/FAYE/websocket/ruby/.bundle/ruby/1.9.1/gems/passenger-4.0.2/ext/ruby/passenger_native_support.c
|
638
|
+
[ 2013-05-12 16:16:44.6868 10526/7f209feb9700 Pool2/Spawner.h:739 ]: [App 10562 stdout] linking shared-object passenger_native_support.so
|
639
|
+
[ 2013-05-12 16:16:44.8784 10526/7f209feb9700 Pool2/SmartSpawner.h:300 ]: Preloader for /home/james/projects/FAYE/websocket/ruby/examples started on PID 10562, listening on unix:/tmp/passenger.1.0.10522/generation-0/backends/preloader.10562
|
640
|
+
[ 2013-05-12 16:16:55.8125 10898/7f0a03666740 agents/HelperAgent/Main.cpp:554 ]: PassengerHelperAgent online, listening at unix:/tmp/passenger.1.0.10894/generation-0/request.socket
|
641
|
+
[ 2013-05-12 16:16:55.8313 10904/7f34f42ce740 agents/LoggingAgent/Main.cpp:272 ]: PassengerLoggingAgent online, listening at unix:/tmp/passenger.1.0.10894/generation-0/logging.socket
|
642
|
+
[ 2013-05-12 16:16:57.9913 10898/7f0a03516700 Pool2/Spawner.h:739 ]: [App 10934 stdout]
|
643
|
+
[ 2013-05-12 16:16:58.3423 10898/7f0a03516700 Pool2/SmartSpawner.h:300 ]: Preloader for /home/james/projects/FAYE/websocket/ruby/examples started on PID 10934, listening on unix:/tmp/passenger.1.0.10894/generation-0/backends/preloader.10934
|
644
|
+
[ 2013-05-12 16:47:28.1492 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
645
|
+
[ 2013-05-12 16:47:28.1522 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
646
|
+
[ 2013-05-12 16:47:28.1557 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
647
|
+
[ 2013-05-12 16:47:28.1579 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
648
|
+
[ 2013-05-12 16:47:28.1611 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
649
|
+
[ 2013-05-12 16:47:28.1650 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
650
|
+
[ 2013-05-12 16:47:28.1686 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
651
|
+
[ 2013-05-12 16:47:28.1697 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
652
|
+
[ 2013-05-12 16:47:28.1736 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
653
|
+
[ 2013-05-12 16:47:28.1753 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
654
|
+
[ 2013-05-12 16:47:28.1788 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
655
|
+
[ 2013-05-12 16:47:28.2746 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
656
|
+
[ 2013-05-12 16:47:28.2783 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
657
|
+
[ 2013-05-12 16:47:28.3266 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
658
|
+
[ 2013-05-12 16:47:28.3331 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
659
|
+
[ 2013-05-12 16:47:28.4031 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
660
|
+
[ 2013-05-12 16:47:28.4066 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
661
|
+
[ 2013-05-12 16:47:28.4094 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
662
|
+
[ 2013-05-12 16:47:28.4144 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
663
|
+
[ 2013-05-12 16:47:28.4157 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
664
|
+
[ 2013-05-12 16:47:28.4191 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
665
|
+
[ 2013-05-12 16:47:28.4223 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
666
|
+
[ 2013-05-12 16:47:28.4271 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
667
|
+
[ 2013-05-12 16:47:28.4304 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
668
|
+
[ 2013-05-12 16:47:28.4486 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
669
|
+
[ 2013-05-12 16:47:28.4519 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
670
|
+
[ 2013-05-12 16:47:28.4571 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
671
|
+
[ 2013-05-12 16:47:28.5073 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
672
|
+
[ 2013-05-12 16:47:28.5234 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
673
|
+
[ 2013-05-12 16:47:28.5774 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
674
|
+
[ 2013-05-12 16:47:28.5996 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
675
|
+
[ 2013-05-12 16:47:28.6571 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
676
|
+
[ 2013-05-12 16:47:28.6791 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
677
|
+
[ 2013-05-12 16:47:28.6803 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
678
|
+
[ 2013-05-12 16:47:28.6834 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
679
|
+
[ 2013-05-12 16:47:28.6848 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
680
|
+
[ 2013-05-12 16:47:28.6879 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
681
|
+
[ 2013-05-12 16:47:28.6893 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
682
|
+
[ 2013-05-12 16:47:28.6922 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
683
|
+
[ 2013-05-12 16:47:28.6937 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
684
|
+
[ 2013-05-12 16:47:28.7112 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
685
|
+
[ 2013-05-12 16:47:28.7133 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Received control frame having too long payload: 126"]
|
686
|
+
[ 2013-05-12 16:47:28.7223 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
687
|
+
[ 2013-05-12 16:47:28.7459 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
688
|
+
[ 2013-05-12 16:47:28.7491 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
689
|
+
[ 2013-05-12 16:47:28.7501 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
690
|
+
[ 2013-05-12 16:47:28.7549 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
691
|
+
[ 2013-05-12 16:47:28.7569 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
692
|
+
[ 2013-05-12 16:47:28.7607 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
693
|
+
[ 2013-05-12 16:47:28.7636 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
694
|
+
[ 2013-05-12 16:47:28.7676 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
695
|
+
[ 2013-05-12 16:47:28.7772 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
696
|
+
[ 2013-05-12 16:47:28.7827 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
697
|
+
[ 2013-05-12 16:47:28.8114 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
698
|
+
[ 2013-05-12 16:47:28.8153 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
699
|
+
[ 2013-05-12 16:47:28.8160 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "One or more reserved bits are on: reserved1 = 0, reserved2 = 0, reserved3 = 1"]
|
700
|
+
[ 2013-05-12 16:47:28.8192 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
701
|
+
[ 2013-05-12 16:47:28.8203 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "One or more reserved bits are on: reserved1 = 0, reserved2 = 1, reserved3 = 0"]
|
702
|
+
[ 2013-05-12 16:47:28.8233 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
703
|
+
[ 2013-05-12 16:47:28.8248 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "One or more reserved bits are on: reserved1 = 0, reserved2 = 1, reserved3 = 1"]
|
704
|
+
[ 2013-05-12 16:47:28.8297 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
705
|
+
[ 2013-05-12 16:47:28.8348 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "One or more reserved bits are on: reserved1 = 1, reserved2 = 0, reserved3 = 0"]
|
706
|
+
2013/05/12 16:47:28 [error] 10913#0: *96 recv() failed (104: Connection reset by peer) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.10894/generation-0/request.socket:", host: "127.0.0.1:8001"
|
707
|
+
[ 2013-05-12 16:47:28.8391 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
708
|
+
[ 2013-05-12 16:47:28.8407 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "One or more reserved bits are on: reserved1 = 1, reserved2 = 0, reserved3 = 1"]
|
709
|
+
[ 2013-05-12 16:47:28.8459 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
710
|
+
[ 2013-05-12 16:47:28.8477 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "One or more reserved bits are on: reserved1 = 1, reserved2 = 1, reserved3 = 0"]
|
711
|
+
[ 2013-05-12 16:47:28.8527 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
712
|
+
[ 2013-05-12 16:47:28.8542 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "One or more reserved bits are on: reserved1 = 1, reserved2 = 1, reserved3 = 1"]
|
713
|
+
[ 2013-05-12 16:47:28.8586 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
714
|
+
[ 2013-05-12 16:47:28.8603 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Unrecognized frame opcode: 3"]
|
715
|
+
[ 2013-05-12 16:47:28.8648 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
716
|
+
[ 2013-05-12 16:47:28.8671 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Unrecognized frame opcode: 4"]
|
717
|
+
[ 2013-05-12 16:47:28.8728 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
718
|
+
[ 2013-05-12 16:47:28.8736 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Unrecognized frame opcode: 5"]
|
719
|
+
[ 2013-05-12 16:47:28.8804 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
720
|
+
[ 2013-05-12 16:47:28.8813 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Unrecognized frame opcode: 6"]
|
721
|
+
2013/05/12 16:47:28 [error] 10913#0: *110 send() failed (32: Broken pipe) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.10894/generation-0/request.socket:", host: "127.0.0.1:8001"
|
722
|
+
[ 2013-05-12 16:47:28.8868 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
723
|
+
[ 2013-05-12 16:47:28.8942 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Unrecognized frame opcode: 7"]
|
724
|
+
2013/05/12 16:47:28 [error] 10913#0: *112 send() failed (32: Broken pipe) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.10894/generation-0/request.socket:", host: "127.0.0.1:8001"
|
725
|
+
[ 2013-05-12 16:47:28.9022 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
726
|
+
[ 2013-05-12 16:47:28.9039 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Unrecognized frame opcode: 11"]
|
727
|
+
[ 2013-05-12 16:47:28.9089 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
728
|
+
[ 2013-05-12 16:47:28.9106 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Unrecognized frame opcode: 12"]
|
729
|
+
[ 2013-05-12 16:47:28.9181 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
730
|
+
[ 2013-05-12 16:47:28.9202 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Unrecognized frame opcode: 13"]
|
731
|
+
[ 2013-05-12 16:47:28.9254 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
732
|
+
[ 2013-05-12 16:47:28.9277 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Unrecognized frame opcode: 14"]
|
733
|
+
2013/05/12 16:47:28 [error] 10913#0: *120 recv() failed (104: Connection reset by peer) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.10894/generation-0/request.socket:", host: "127.0.0.1:8001"
|
734
|
+
[ 2013-05-12 16:47:28.9338 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
735
|
+
[ 2013-05-12 16:47:28.9402 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Unrecognized frame opcode: 15"]
|
736
|
+
2013/05/12 16:47:28 [error] 10913#0: *122 send() failed (32: Broken pipe) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.10894/generation-0/request.socket:", host: "127.0.0.1:8001"
|
737
|
+
[ 2013-05-12 16:47:28.9455 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
738
|
+
[ 2013-05-12 16:47:28.9475 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Received fragmented control frame: opcode = 9"]
|
739
|
+
[ 2013-05-12 16:47:28.9529 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
740
|
+
[ 2013-05-12 16:47:28.9546 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Received fragmented control frame: opcode = 10"]
|
741
|
+
[ 2013-05-12 16:47:28.9595 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
742
|
+
[ 2013-05-12 16:47:28.9627 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
743
|
+
[ 2013-05-12 16:47:28.9711 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
744
|
+
[ 2013-05-12 16:47:28.9748 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
745
|
+
[ 2013-05-12 16:47:28.9927 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
746
|
+
[ 2013-05-12 16:47:28.0016 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
747
|
+
[ 2013-05-12 16:47:29.0064 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
748
|
+
[ 2013-05-12 16:47:29.0100 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
749
|
+
[ 2013-05-12 16:47:29.0154 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
750
|
+
[ 2013-05-12 16:47:29.0197 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
751
|
+
[ 2013-05-12 16:47:29.0247 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
752
|
+
[ 2013-05-12 16:47:29.0406 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
753
|
+
[ 2013-05-12 16:47:29.0455 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
754
|
+
[ 2013-05-12 16:47:29.0476 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Received unexpected continuation frame"]
|
755
|
+
[ 2013-05-12 16:47:29.0530 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
756
|
+
[ 2013-05-12 16:47:29.0551 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Received unexpected continuation frame"]
|
757
|
+
[ 2013-05-12 16:47:29.0600 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
758
|
+
[ 2013-05-12 16:47:29.0700 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Received unexpected continuation frame"]
|
759
|
+
2013/05/12 16:47:29 [error] 10913#0: *144 recv() failed (104: Connection reset by peer) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.10894/generation-0/request.socket:", host: "127.0.0.1:8001"
|
760
|
+
[ 2013-05-12 16:47:29.0755 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
761
|
+
[ 2013-05-12 16:47:29.0774 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Received unexpected continuation frame"]
|
762
|
+
[ 2013-05-12 16:47:29.0824 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
763
|
+
[ 2013-05-12 16:47:29.0877 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Received unexpected continuation frame"]
|
764
|
+
[ 2013-05-12 16:47:29.0929 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
765
|
+
[ 2013-05-12 16:47:29.1034 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Received unexpected continuation frame"]
|
766
|
+
[ 2013-05-12 16:47:29.1091 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
767
|
+
[ 2013-05-12 16:47:29.1111 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Received unexpected continuation frame"]
|
768
|
+
[ 2013-05-12 16:47:29.1162 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
769
|
+
[ 2013-05-12 16:47:29.1187 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Received unexpected continuation frame"]
|
770
|
+
[ 2013-05-12 16:47:29.1253 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
771
|
+
[ 2013-05-12 16:47:29.1275 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Received unexpected continuation frame"]
|
772
|
+
[ 2013-05-12 16:47:29.1325 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
773
|
+
[ 2013-05-12 16:47:29.1341 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Received new data frame but previous continuous frame is unfinished"]
|
774
|
+
[ 2013-05-12 16:47:29.1392 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
775
|
+
[ 2013-05-12 16:47:30.1418 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
776
|
+
[ 2013-05-12 16:47:30.1436 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
777
|
+
[ 2013-05-12 16:47:31.1481 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
778
|
+
[ 2013-05-12 16:47:31.1533 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
779
|
+
[ 2013-05-12 16:47:31.1564 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
780
|
+
[ 2013-05-12 16:47:31.1613 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
781
|
+
[ 2013-05-12 16:47:31.1646 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
782
|
+
[ 2013-05-12 16:47:31.1700 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
783
|
+
[ 2013-05-12 16:47:31.1729 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
784
|
+
[ 2013-05-12 16:47:31.1781 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
785
|
+
[ 2013-05-12 16:47:31.1814 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
786
|
+
[ 2013-05-12 16:47:31.1862 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
787
|
+
[ 2013-05-12 16:47:31.1893 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
788
|
+
[ 2013-05-12 16:47:31.1943 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
789
|
+
[ 2013-05-12 16:47:31.1998 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
790
|
+
[ 2013-05-12 16:47:31.2047 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
791
|
+
[ 2013-05-12 16:47:31.2085 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
792
|
+
[ 2013-05-12 16:47:31.2133 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
793
|
+
[ 2013-05-12 16:47:31.2152 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
794
|
+
[ 2013-05-12 16:47:31.2211 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
795
|
+
[ 2013-05-12 16:47:31.2251 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
796
|
+
[ 2013-05-12 16:47:31.2307 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
797
|
+
[ 2013-05-12 16:47:33.2334 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
798
|
+
[ 2013-05-12 16:47:33.2385 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
799
|
+
[ 2013-05-12 16:47:35.2415 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
800
|
+
[ 2013-05-12 16:47:35.2471 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
801
|
+
[ 2013-05-12 16:47:37.2505 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
802
|
+
[ 2013-05-12 16:47:37.2556 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
803
|
+
[ 2013-05-12 16:47:39.2585 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
804
|
+
[ 2013-05-12 16:47:39.2796 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
805
|
+
[ 2013-05-12 16:47:39.2824 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
806
|
+
[ 2013-05-12 16:47:39.2858 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
807
|
+
[ 2013-05-12 16:47:39.2868 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
808
|
+
2013/05/12 16:47:39 [error] 10913#0: *192 recv() failed (104: Connection reset by peer) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.10894/generation-0/request.socket:", host: "127.0.0.1:8001"
|
809
|
+
[ 2013-05-12 16:47:39.2909 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
810
|
+
[ 2013-05-12 16:47:39.2923 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
811
|
+
[ 2013-05-12 16:47:39.2941 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
812
|
+
[ 2013-05-12 16:47:39.2948 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
813
|
+
[ 2013-05-12 16:47:39.2968 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
814
|
+
[ 2013-05-12 16:47:39.2975 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
815
|
+
[ 2013-05-12 16:47:39.3003 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
816
|
+
[ 2013-05-12 16:47:39.3016 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
817
|
+
[ 2013-05-12 16:47:39.3048 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
818
|
+
[ 2013-05-12 16:47:39.3060 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
819
|
+
[ 2013-05-12 16:47:39.3089 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
820
|
+
[ 2013-05-12 16:47:39.3109 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
821
|
+
[ 2013-05-12 16:47:39.3134 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
822
|
+
[ 2013-05-12 16:47:39.3148 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
823
|
+
[ 2013-05-12 16:47:39.3187 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
824
|
+
[ 2013-05-12 16:47:39.3210 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
825
|
+
[ 2013-05-12 16:47:39.3237 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
826
|
+
[ 2013-05-12 16:47:39.3246 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
827
|
+
[ 2013-05-12 16:47:39.3281 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
828
|
+
[ 2013-05-12 16:47:39.3295 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
829
|
+
[ 2013-05-12 16:47:39.3326 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
830
|
+
[ 2013-05-12 16:47:39.3340 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
831
|
+
[ 2013-05-12 16:47:39.3365 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
832
|
+
[ 2013-05-12 16:47:39.3380 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
833
|
+
[ 2013-05-12 16:47:39.3408 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
834
|
+
[ 2013-05-12 16:47:39.3425 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
835
|
+
[ 2013-05-12 16:47:39.3483 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
836
|
+
[ 2013-05-12 16:47:39.3505 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
837
|
+
[ 2013-05-12 16:47:39.3576 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
838
|
+
[ 2013-05-12 16:47:39.3598 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
839
|
+
[ 2013-05-12 16:47:39.3649 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
840
|
+
[ 2013-05-12 16:47:39.3665 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
841
|
+
[ 2013-05-12 16:47:39.3726 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
842
|
+
[ 2013-05-12 16:47:39.3765 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
843
|
+
[ 2013-05-12 16:47:39.3837 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
844
|
+
[ 2013-05-12 16:47:39.3862 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
845
|
+
[ 2013-05-12 16:47:39.3880 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
846
|
+
[ 2013-05-12 16:47:39.3889 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
847
|
+
[ 2013-05-12 16:47:39.3906 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
848
|
+
[ 2013-05-12 16:47:39.3915 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
849
|
+
[ 2013-05-12 16:47:39.3933 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
850
|
+
[ 2013-05-12 16:47:39.3938 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
851
|
+
[ 2013-05-12 16:47:39.3954 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
852
|
+
[ 2013-05-12 16:47:39.3974 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
853
|
+
[ 2013-05-12 16:47:39.3990 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
854
|
+
[ 2013-05-12 16:47:39.3996 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
855
|
+
[ 2013-05-12 16:47:39.4012 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
856
|
+
[ 2013-05-12 16:47:39.4024 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
857
|
+
[ 2013-05-12 16:47:39.4041 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
858
|
+
[ 2013-05-12 16:47:39.4054 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
859
|
+
[ 2013-05-12 16:47:39.4071 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
860
|
+
[ 2013-05-12 16:47:39.4079 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
861
|
+
[ 2013-05-12 16:47:39.4094 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
862
|
+
[ 2013-05-12 16:47:39.4104 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
863
|
+
[ 2013-05-12 16:47:39.4177 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
864
|
+
[ 2013-05-12 16:47:39.4183 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
865
|
+
[ 2013-05-12 16:47:39.4203 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
866
|
+
[ 2013-05-12 16:47:39.4209 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
867
|
+
[ 2013-05-12 16:47:39.4227 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
868
|
+
[ 2013-05-12 16:47:39.4233 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
869
|
+
[ 2013-05-12 16:47:39.4254 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
870
|
+
[ 2013-05-12 16:47:39.4256 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
871
|
+
[ 2013-05-12 16:47:39.4273 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
872
|
+
[ 2013-05-12 16:47:39.4278 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
873
|
+
2013/05/12 16:47:39 [error] 10913#0: *256 recv() failed (104: Connection reset by peer) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.10894/generation-0/request.socket:", host: "127.0.0.1:8001"
|
874
|
+
[ 2013-05-12 16:47:39.4295 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
875
|
+
[ 2013-05-12 16:47:39.4301 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
876
|
+
[ 2013-05-12 16:47:39.4321 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
877
|
+
[ 2013-05-12 16:47:39.4328 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
878
|
+
[ 2013-05-12 16:47:39.4347 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
879
|
+
[ 2013-05-12 16:47:39.4351 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
880
|
+
[ 2013-05-12 16:47:39.4368 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
881
|
+
[ 2013-05-12 16:47:39.4372 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
882
|
+
[ 2013-05-12 16:47:39.4388 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
883
|
+
[ 2013-05-12 16:47:39.4393 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
884
|
+
[ 2013-05-12 16:47:39.4407 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
885
|
+
[ 2013-05-12 16:47:39.4411 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
886
|
+
[ 2013-05-12 16:47:39.4430 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
887
|
+
[ 2013-05-12 16:47:39.4436 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
888
|
+
[ 2013-05-12 16:47:39.4454 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
889
|
+
[ 2013-05-12 16:47:39.4463 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
890
|
+
[ 2013-05-12 16:47:39.4479 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
891
|
+
[ 2013-05-12 16:47:39.4484 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
892
|
+
[ 2013-05-12 16:47:39.4499 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
893
|
+
[ 2013-05-12 16:47:39.4504 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
894
|
+
[ 2013-05-12 16:47:39.4521 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
895
|
+
[ 2013-05-12 16:47:39.4526 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
896
|
+
[ 2013-05-12 16:47:39.4542 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
897
|
+
[ 2013-05-12 16:47:39.4547 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
898
|
+
[ 2013-05-12 16:47:39.4563 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
899
|
+
[ 2013-05-12 16:47:39.4568 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
900
|
+
[ 2013-05-12 16:47:39.4598 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
901
|
+
[ 2013-05-12 16:47:39.4604 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
902
|
+
[ 2013-05-12 16:47:39.4620 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
903
|
+
[ 2013-05-12 16:47:39.4625 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
904
|
+
[ 2013-05-12 16:47:39.4641 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
905
|
+
[ 2013-05-12 16:47:39.4646 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
906
|
+
[ 2013-05-12 16:47:39.4661 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
907
|
+
[ 2013-05-12 16:47:39.4667 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
908
|
+
[ 2013-05-12 16:47:39.4688 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
909
|
+
[ 2013-05-12 16:47:39.4693 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
910
|
+
[ 2013-05-12 16:47:39.4713 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
911
|
+
[ 2013-05-12 16:47:39.4722 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
912
|
+
[ 2013-05-12 16:47:39.4738 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
913
|
+
[ 2013-05-12 16:47:39.4745 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
914
|
+
[ 2013-05-12 16:47:39.4764 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
915
|
+
[ 2013-05-12 16:47:39.4769 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
916
|
+
[ 2013-05-12 16:47:39.4784 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
917
|
+
[ 2013-05-12 16:47:39.4789 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
918
|
+
[ 2013-05-12 16:47:39.4803 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
919
|
+
[ 2013-05-12 16:47:39.4809 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
920
|
+
[ 2013-05-12 16:47:39.4827 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
921
|
+
[ 2013-05-12 16:47:39.4831 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
922
|
+
[ 2013-05-12 16:47:39.4898 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
923
|
+
[ 2013-05-12 16:47:39.4905 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
924
|
+
[ 2013-05-12 16:47:39.4922 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
925
|
+
[ 2013-05-12 16:47:39.4926 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
926
|
+
[ 2013-05-12 16:47:39.4942 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
927
|
+
[ 2013-05-12 16:47:39.4947 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
928
|
+
[ 2013-05-12 16:47:39.4964 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
929
|
+
[ 2013-05-12 16:47:39.4969 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
930
|
+
[ 2013-05-12 16:47:39.4985 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
931
|
+
[ 2013-05-12 16:47:39.4991 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
932
|
+
[ 2013-05-12 16:47:39.5006 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
933
|
+
[ 2013-05-12 16:47:39.5011 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
934
|
+
[ 2013-05-12 16:47:39.5028 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
935
|
+
[ 2013-05-12 16:47:39.5032 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
936
|
+
[ 2013-05-12 16:47:39.5048 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
937
|
+
[ 2013-05-12 16:47:39.5054 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
938
|
+
[ 2013-05-12 16:47:39.5073 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
939
|
+
[ 2013-05-12 16:47:39.5080 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
940
|
+
[ 2013-05-12 16:47:39.5098 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
941
|
+
[ 2013-05-12 16:47:39.5104 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
942
|
+
[ 2013-05-12 16:47:39.5119 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
943
|
+
[ 2013-05-12 16:47:39.5125 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
944
|
+
[ 2013-05-12 16:47:39.5141 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
945
|
+
[ 2013-05-12 16:47:39.5147 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
946
|
+
[ 2013-05-12 16:47:39.5162 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
947
|
+
[ 2013-05-12 16:47:39.5166 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
948
|
+
[ 2013-05-12 16:47:39.5182 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
949
|
+
[ 2013-05-12 16:47:39.5206 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
950
|
+
[ 2013-05-12 16:47:39.5222 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
951
|
+
[ 2013-05-12 16:47:39.5228 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
952
|
+
[ 2013-05-12 16:47:39.5246 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
953
|
+
[ 2013-05-12 16:47:39.5252 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
954
|
+
2013/05/12 16:47:39 [error] 10913#0: *336 recv() failed (104: Connection reset by peer) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.10894/generation-0/request.socket:", host: "127.0.0.1:8001"
|
955
|
+
[ 2013-05-12 16:47:39.5271 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
956
|
+
[ 2013-05-12 16:47:39.5276 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
957
|
+
[ 2013-05-12 16:47:39.5303 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
958
|
+
[ 2013-05-12 16:47:39.5315 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
959
|
+
2013/05/12 16:47:39 [error] 10913#0: *340 recv() failed (104: Connection reset by peer) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.10894/generation-0/request.socket:", host: "127.0.0.1:8001"
|
960
|
+
[ 2013-05-12 16:47:39.5347 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
961
|
+
[ 2013-05-12 16:47:39.5353 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
962
|
+
2013/05/12 16:47:39 [error] 10913#0: *342 recv() failed (104: Connection reset by peer) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.10894/generation-0/request.socket:", host: "127.0.0.1:8001"
|
963
|
+
[ 2013-05-12 16:47:39.5383 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
964
|
+
[ 2013-05-12 16:47:39.5396 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
965
|
+
2013/05/12 16:47:39 [error] 10913#0: *344 recv() failed (104: Connection reset by peer) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.10894/generation-0/request.socket:", host: "127.0.0.1:8001"
|
966
|
+
[ 2013-05-12 16:47:39.5442 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
967
|
+
[ 2013-05-12 16:47:39.5457 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
968
|
+
[ 2013-05-12 16:47:39.5503 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
969
|
+
[ 2013-05-12 16:47:39.5517 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
970
|
+
2013/05/12 16:47:39 [error] 10913#0: *348 send() failed (32: Broken pipe) while proxying upgraded connection, client: 127.0.0.1, server: _, request: "GET / HTTP/1.1", upstream: "passenger:/tmp/passenger.1.0.10894/generation-0/request.socket:", host: "127.0.0.1:8001"
|
971
|
+
[ 2013-05-12 16:47:39.5570 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
972
|
+
[ 2013-05-12 16:47:39.5589 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
973
|
+
[ 2013-05-12 16:47:39.5642 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
974
|
+
[ 2013-05-12 16:47:39.5664 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
975
|
+
[ 2013-05-12 16:47:39.5722 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
976
|
+
[ 2013-05-12 16:47:39.5746 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
977
|
+
[ 2013-05-12 16:47:39.5807 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
978
|
+
[ 2013-05-12 16:47:39.5830 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
979
|
+
[ 2013-05-12 16:47:39.5879 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
980
|
+
[ 2013-05-12 16:47:39.5896 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
981
|
+
[ 2013-05-12 16:47:39.5957 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
982
|
+
[ 2013-05-12 16:47:39.5975 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
983
|
+
[ 2013-05-12 16:47:39.6021 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
984
|
+
[ 2013-05-12 16:47:39.6036 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, "Could not decode a text frame as UTF-8"]
|
985
|
+
[ 2013-05-12 16:47:39.6250 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
986
|
+
[ 2013-05-12 16:47:39.6273 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
987
|
+
[ 2013-05-12 16:47:39.6380 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
988
|
+
[ 2013-05-12 16:47:39.6399 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
989
|
+
[ 2013-05-12 16:47:39.6443 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
990
|
+
[ 2013-05-12 16:47:39.6465 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
991
|
+
[ 2013-05-12 16:47:39.6503 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
992
|
+
[ 2013-05-12 16:47:39.6531 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
993
|
+
[ 2013-05-12 16:47:39.6583 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
994
|
+
[ 2013-05-12 16:47:39.6613 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
995
|
+
[ 2013-05-12 16:47:39.6673 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
996
|
+
[ 2013-05-12 16:47:39.6700 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
997
|
+
[ 2013-05-12 16:47:39.6751 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
998
|
+
[ 2013-05-12 16:47:39.6782 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
999
|
+
[ 2013-05-12 16:47:39.6841 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1000
|
+
[ 2013-05-12 16:47:39.6871 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1001
|
+
[ 2013-05-12 16:47:39.6926 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1002
|
+
[ 2013-05-12 16:47:39.6953 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1003
|
+
[ 2013-05-12 16:47:39.7004 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1004
|
+
[ 2013-05-12 16:47:39.7037 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1005
|
+
[ 2013-05-12 16:47:39.7086 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1006
|
+
[ 2013-05-12 16:47:39.7116 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1007
|
+
[ 2013-05-12 16:47:39.7168 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1008
|
+
[ 2013-05-12 16:47:39.7196 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1009
|
+
[ 2013-05-12 16:47:39.7245 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1010
|
+
[ 2013-05-12 16:47:39.7272 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1011
|
+
[ 2013-05-12 16:47:39.7338 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1012
|
+
[ 2013-05-12 16:47:39.7364 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1013
|
+
[ 2013-05-12 16:47:39.7412 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1014
|
+
[ 2013-05-12 16:47:39.7442 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1015
|
+
[ 2013-05-12 16:47:39.7508 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1016
|
+
[ 2013-05-12 16:47:39.7547 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1017
|
+
[ 2013-05-12 16:47:39.7597 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1018
|
+
[ 2013-05-12 16:47:39.7626 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1019
|
+
[ 2013-05-12 16:47:39.7673 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1020
|
+
[ 2013-05-12 16:47:39.7705 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1021
|
+
[ 2013-05-12 16:47:39.7760 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1022
|
+
[ 2013-05-12 16:47:39.7791 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1023
|
+
[ 2013-05-12 16:47:39.7839 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1024
|
+
[ 2013-05-12 16:47:39.7869 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1025
|
+
[ 2013-05-12 16:47:39.7925 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1026
|
+
[ 2013-05-12 16:47:39.7953 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1027
|
+
[ 2013-05-12 16:47:39.8000 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1028
|
+
[ 2013-05-12 16:47:39.8032 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1029
|
+
[ 2013-05-12 16:47:39.8092 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1030
|
+
[ 2013-05-12 16:47:39.8117 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1031
|
+
[ 2013-05-12 16:47:39.8168 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1032
|
+
[ 2013-05-12 16:47:39.8197 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1033
|
+
[ 2013-05-12 16:47:39.8269 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1034
|
+
[ 2013-05-12 16:47:39.8297 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1035
|
+
[ 2013-05-12 16:47:39.8345 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1036
|
+
[ 2013-05-12 16:47:39.8375 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1037
|
+
[ 2013-05-12 16:47:39.8424 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1038
|
+
[ 2013-05-12 16:47:39.8452 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1039
|
+
[ 2013-05-12 16:47:39.8528 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1040
|
+
[ 2013-05-12 16:47:39.8576 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1041
|
+
[ 2013-05-12 16:47:39.8647 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1042
|
+
[ 2013-05-12 16:47:39.8677 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1043
|
+
[ 2013-05-12 16:47:39.8876 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1044
|
+
[ 2013-05-12 16:47:39.8909 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1045
|
+
[ 2013-05-12 16:47:39.8960 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1046
|
+
[ 2013-05-12 16:47:39.8988 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1047
|
+
[ 2013-05-12 16:47:39.9035 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1048
|
+
[ 2013-05-12 16:47:39.9063 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1049
|
+
[ 2013-05-12 16:47:39.9112 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1050
|
+
[ 2013-05-12 16:47:39.9138 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1051
|
+
[ 2013-05-12 16:47:39.9219 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1052
|
+
[ 2013-05-12 16:47:39.9244 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1053
|
+
[ 2013-05-12 16:47:39.9292 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1054
|
+
[ 2013-05-12 16:47:39.9318 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1055
|
+
[ 2013-05-12 16:47:39.9366 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1056
|
+
[ 2013-05-12 16:47:39.9402 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1057
|
+
[ 2013-05-12 16:47:39.9449 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1058
|
+
[ 2013-05-12 16:47:39.9467 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1059
|
+
[ 2013-05-12 16:47:39.9527 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1060
|
+
[ 2013-05-12 16:47:39.9544 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1061
|
+
[ 2013-05-12 16:47:39.9593 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1062
|
+
[ 2013-05-12 16:47:39.9610 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1063
|
+
[ 2013-05-12 16:47:39.9659 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1064
|
+
[ 2013-05-12 16:47:39.9677 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1065
|
+
[ 2013-05-12 16:47:39.9724 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1066
|
+
[ 2013-05-12 16:47:40.0972 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1067
|
+
[ 2013-05-12 16:47:40.2068 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1068
|
+
[ 2013-05-12 16:47:40.2077 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1069
|
+
[ 2013-05-12 16:47:40.2098 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1070
|
+
[ 2013-05-12 16:47:40.2107 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, ""]
|
1071
|
+
[ 2013-05-12 16:47:40.2135 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1072
|
+
[ 2013-05-12 16:47:40.2143 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1073
|
+
[ 2013-05-12 16:47:40.2163 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1074
|
+
[ 2013-05-12 16:47:40.2170 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, "Hello World!"]
|
1075
|
+
[ 2013-05-12 16:47:40.2201 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1076
|
+
[ 2013-05-12 16:47:40.2213 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, "***************************************************************************************************************************"]
|
1077
|
+
[ 2013-05-12 16:47:40.2236 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1078
|
+
[ 2013-05-12 16:47:40.2243 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, "Received control frame having too long payload: 126"]
|
1079
|
+
[ 2013-05-12 16:47:40.2284 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1080
|
+
[ 2013-05-12 16:47:40.2295 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, ""]
|
1081
|
+
[ 2013-05-12 16:47:40.2327 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1082
|
+
[ 2013-05-12 16:47:40.2339 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1083
|
+
[ 2013-05-12 16:47:40.2383 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1084
|
+
[ 2013-05-12 16:47:40.2398 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1001, ""]
|
1085
|
+
[ 2013-05-12 16:47:40.2444 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1086
|
+
[ 2013-05-12 16:47:40.2457 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, ""]
|
1087
|
+
[ 2013-05-12 16:47:40.2505 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1088
|
+
[ 2013-05-12 16:47:40.2519 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1003, ""]
|
1089
|
+
[ 2013-05-12 16:47:40.2563 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1090
|
+
[ 2013-05-12 16:47:40.2577 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1007, ""]
|
1091
|
+
[ 2013-05-12 16:47:40.2620 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1092
|
+
[ 2013-05-12 16:47:40.2632 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1008, ""]
|
1093
|
+
[ 2013-05-12 16:47:40.2679 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1094
|
+
[ 2013-05-12 16:47:40.2698 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1009, ""]
|
1095
|
+
[ 2013-05-12 16:47:40.2748 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1096
|
+
[ 2013-05-12 16:47:40.2764 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1010, ""]
|
1097
|
+
[ 2013-05-12 16:47:40.2809 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1098
|
+
[ 2013-05-12 16:47:40.2827 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1011, ""]
|
1099
|
+
[ 2013-05-12 16:47:40.2889 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1100
|
+
[ 2013-05-12 16:47:40.2904 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 3000, ""]
|
1101
|
+
[ 2013-05-12 16:47:40.2950 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1102
|
+
[ 2013-05-12 16:47:40.2967 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 3999, ""]
|
1103
|
+
[ 2013-05-12 16:47:40.3018 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1104
|
+
[ 2013-05-12 16:47:40.3047 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 4000, ""]
|
1105
|
+
[ 2013-05-12 16:47:40.3094 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1106
|
+
[ 2013-05-12 16:47:40.3111 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 4999, ""]
|
1107
|
+
[ 2013-05-12 16:47:40.3157 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1108
|
+
[ 2013-05-12 16:47:40.3171 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, ""]
|
1109
|
+
[ 2013-05-12 16:47:40.3216 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1110
|
+
[ 2013-05-12 16:47:40.3233 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, ""]
|
1111
|
+
[ 2013-05-12 16:47:40.3279 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1112
|
+
[ 2013-05-12 16:47:40.3292 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, ""]
|
1113
|
+
[ 2013-05-12 16:47:40.3339 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1114
|
+
[ 2013-05-12 16:47:40.3357 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, ""]
|
1115
|
+
[ 2013-05-12 16:47:40.3414 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1116
|
+
[ 2013-05-12 16:47:40.3427 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, ""]
|
1117
|
+
[ 2013-05-12 16:47:40.3473 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1118
|
+
[ 2013-05-12 16:47:40.3491 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, ""]
|
1119
|
+
[ 2013-05-12 16:47:40.3554 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1120
|
+
[ 2013-05-12 16:47:40.3560 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, ""]
|
1121
|
+
[ 2013-05-12 16:47:40.3609 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1122
|
+
[ 2013-05-12 16:47:40.3624 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, ""]
|
1123
|
+
[ 2013-05-12 16:47:40.3871 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1124
|
+
[ 2013-05-12 16:47:40.3884 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, ""]
|
1125
|
+
[ 2013-05-12 16:47:40.3931 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1126
|
+
[ 2013-05-12 16:47:40.3950 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, ""]
|
1127
|
+
[ 2013-05-12 16:47:40.3998 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1128
|
+
[ 2013-05-12 16:47:40.4016 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, ""]
|
1129
|
+
[ 2013-05-12 16:47:40.4063 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1130
|
+
[ 2013-05-12 16:47:40.4079 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, ""]
|
1131
|
+
[ 2013-05-12 16:47:40.4134 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1132
|
+
[ 2013-05-12 16:47:40.4148 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, ""]
|
1133
|
+
[ 2013-05-12 16:47:40.4198 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1134
|
+
[ 2013-05-12 16:47:40.4215 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, ""]
|
1135
|
+
[ 2013-05-12 16:47:40.4280 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1136
|
+
[ 2013-05-12 16:47:40.4293 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1002, ""]
|
1137
|
+
[ 2013-05-12 16:47:40.4342 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1138
|
+
[ 2013-05-12 16:47:40.5124 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1139
|
+
[ 2013-05-12 16:47:40.5148 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1140
|
+
[ 2013-05-12 16:47:40.7763 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1141
|
+
[ 2013-05-12 16:47:40.7816 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1142
|
+
[ 2013-05-12 16:47:41.6578 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1143
|
+
[ 2013-05-12 16:47:41.6599 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1144
|
+
[ 2013-05-12 16:47:44.9297 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1145
|
+
[ 2013-05-12 16:47:44.9371 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1146
|
+
[ 2013-05-12 16:47:51.0887 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1147
|
+
[ 2013-05-12 16:47:51.0992 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1148
|
+
[ 2013-05-12 16:48:03.2696 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1149
|
+
[ 2013-05-12 16:48:03.2830 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1150
|
+
[ 2013-05-12 16:48:03.3173 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1151
|
+
[ 2013-05-12 16:48:03.3210 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1152
|
+
[ 2013-05-12 16:48:03.4244 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1153
|
+
[ 2013-05-12 16:48:03.4289 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1154
|
+
[ 2013-05-12 16:48:03.7599 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1155
|
+
[ 2013-05-12 16:48:03.7643 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1156
|
+
[ 2013-05-12 16:48:05.0322 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1157
|
+
[ 2013-05-12 16:48:05.0344 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1158
|
+
[ 2013-05-12 16:48:07.5925 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1159
|
+
[ 2013-05-12 16:48:07.5956 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1160
|
+
[ 2013-05-12 16:48:12.4823 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1161
|
+
[ 2013-05-12 16:48:12.4878 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1162
|
+
[ 2013-05-12 16:48:17.4146 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1163
|
+
[ 2013-05-12 16:48:17.4206 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1164
|
+
[ 2013-05-12 16:48:20.8809 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1165
|
+
[ 2013-05-12 16:48:20.8884 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1166
|
+
[ 2013-05-12 16:48:24.0437 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1167
|
+
[ 2013-05-12 16:48:24.0498 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1168
|
+
[ 2013-05-12 16:48:27.0583 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1169
|
+
[ 2013-05-12 16:48:27.0644 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1170
|
+
[ 2013-05-12 16:48:30.0940 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1171
|
+
[ 2013-05-12 16:48:30.1014 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1172
|
+
[ 2013-05-12 16:48:33.1482 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1173
|
+
[ 2013-05-12 16:48:33.1535 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1174
|
+
[ 2013-05-12 16:48:36.2041 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1175
|
+
[ 2013-05-12 16:48:36.2092 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1176
|
+
[ 2013-05-12 16:48:39.3015 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1177
|
+
[ 2013-05-12 16:48:39.3048 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1178
|
+
[ 2013-05-12 16:48:42.2737 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1179
|
+
[ 2013-05-12 16:48:42.2781 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1180
|
+
[ 2013-05-12 16:48:45.3412 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1181
|
+
[ 2013-05-12 16:48:45.3462 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1182
|
+
[ 2013-05-12 16:48:46.9864 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1183
|
+
[ 2013-05-12 16:48:46.9914 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1184
|
+
[ 2013-05-12 16:48:48.2943 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1185
|
+
[ 2013-05-12 16:48:48.2993 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1186
|
+
[ 2013-05-12 16:48:49.4814 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1187
|
+
[ 2013-05-12 16:48:49.4846 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1188
|
+
[ 2013-05-12 16:48:50.6584 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1189
|
+
[ 2013-05-12 16:48:50.6634 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1190
|
+
[ 2013-05-12 16:48:51.8426 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1191
|
+
[ 2013-05-12 16:48:51.8453 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1192
|
+
[ 2013-05-12 16:48:53.0319 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1193
|
+
[ 2013-05-12 16:48:53.0347 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1194
|
+
[ 2013-05-12 16:48:54.1743 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1195
|
+
[ 2013-05-12 16:48:54.1768 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1196
|
+
[ 2013-05-12 16:48:55.3161 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1197
|
+
[ 2013-05-12 16:48:55.3190 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1198
|
+
[ 2013-05-12 16:48:56.8901 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1199
|
+
[ 2013-05-12 16:48:56.8946 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1200
|
+
[ 2013-05-12 16:48:58.1106 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1201
|
+
[ 2013-05-12 16:48:58.1145 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1202
|
+
[ 2013-05-12 16:48:59.0567 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1203
|
+
[ 2013-05-12 16:48:59.0604 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1204
|
+
[ 2013-05-12 16:48:59.9164 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1205
|
+
[ 2013-05-12 16:48:59.9204 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1206
|
+
[ 2013-05-12 16:49:00.6819 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1207
|
+
[ 2013-05-12 16:49:00.6871 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1208
|
+
[ 2013-05-12 16:49:01.4596 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1209
|
+
[ 2013-05-12 16:49:01.4644 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1210
|
+
[ 2013-05-12 16:49:02.7279 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1211
|
+
[ 2013-05-12 16:49:02.7309 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1212
|
+
[ 2013-05-12 16:49:03.4078 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1213
|
+
[ 2013-05-12 16:49:03.4124 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1214
|
+
[ 2013-05-12 16:49:03.9180 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1215
|
+
[ 2013-05-12 16:49:03.9214 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1216
|
+
[ 2013-05-12 16:49:04.3029 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1217
|
+
[ 2013-05-12 16:49:04.3068 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1218
|
+
[ 2013-05-12 16:49:04.6442 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1219
|
+
[ 2013-05-12 16:49:04.6491 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1220
|
+
[ 2013-05-12 16:49:04.9651 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1221
|
+
[ 2013-05-12 16:49:04.9688 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1222
|
+
[ 2013-05-12 16:49:05.5967 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1223
|
+
[ 2013-05-12 16:49:05.6083 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1224
|
+
[ 2013-05-12 16:49:05.0051 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1225
|
+
[ 2013-05-12 16:49:06.0068 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1226
|
+
[ 2013-05-12 16:49:06.8039 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1227
|
+
[ 2013-05-12 16:49:06.8085 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1228
|
+
[ 2013-05-12 16:49:08.5303 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1229
|
+
[ 2013-05-12 16:49:08.5349 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1230
|
+
[ 2013-05-12 16:49:10.8975 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1231
|
+
[ 2013-05-12 16:49:10.9024 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1232
|
+
[ 2013-05-12 16:49:16.6855 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1233
|
+
[ 2013-05-12 16:49:16.6903 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1234
|
+
[ 2013-05-12 16:49:17.3486 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1235
|
+
[ 2013-05-12 16:49:17.3534 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1236
|
+
[ 2013-05-12 16:49:17.9997 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1237
|
+
[ 2013-05-12 16:49:17.0053 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1238
|
+
[ 2013-05-12 16:49:18.8229 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1239
|
+
[ 2013-05-12 16:49:18.8276 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1240
|
+
[ 2013-05-12 16:49:20.0221 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1241
|
+
[ 2013-05-12 16:49:20.0272 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1242
|
+
[ 2013-05-12 16:49:21.9750 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1243
|
+
[ 2013-05-12 16:49:21.9797 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1244
|
+
[ 2013-05-12 16:49:24.8718 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|
1245
|
+
[ 2013-05-12 16:49:24.8766 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:open, "ws://127.0.0.1:8001/", "hybi-13", ""]
|
1246
|
+
[ 2013-05-12 16:49:24.9519 10898/7f0a00e36700 Pool2/Implementation.cpp:1156 ]: [App 10955 stdout] [:close, 1000, ""]
|