airbrake-api 3.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +6 -0
- data/.rspec +3 -0
- data/.travis.yml +7 -0
- data/Gemfile +7 -0
- data/README.md +80 -0
- data/Rakefile +19 -0
- data/airbrake-api.gemspec +36 -0
- data/lib/airbrake-api.rb +30 -0
- data/lib/airbrake-api/client.rb +41 -0
- data/lib/airbrake-api/core_extensions.rb +5 -0
- data/lib/airbrake-api/error.rb +59 -0
- data/lib/airbrake-api/notice.rb +66 -0
- data/lib/airbrake-api/project.rb +19 -0
- data/lib/airbrake-api/version.rb +3 -0
- data/lib/airbrake_api.rb +1 -0
- data/spec/airbrake_api/error_spec.rb +53 -0
- data/spec/airbrake_api/notice_spec.rb +42 -0
- data/spec/airbrake_api/project_spec.rb +21 -0
- data/spec/airbrake_api_spec.rb +59 -0
- data/spec/fixtures/broken_notice.xml +288 -0
- data/spec/fixtures/errors.xml +545 -0
- data/spec/fixtures/individual_error.xml +207 -0
- data/spec/fixtures/individual_notice.xml +198 -0
- data/spec/fixtures/notices.xml +245 -0
- data/spec/fixtures/paginated_errors.xml +41 -0
- data/spec/fixtures/paginated_notices.xml +101 -0
- data/spec/fixtures/projects.xml +25 -0
- data/spec/fixtures/update_error.xml +207 -0
- data/spec/spec_helper.rb +50 -0
- metadata +220 -0
@@ -0,0 +1,42 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe AirbrakeAPI::Notice do
|
4
|
+
before(:all) do
|
5
|
+
AirbrakeAPI.account = 'myapp'
|
6
|
+
AirbrakeAPI.auth_token = 'abcdefg123456'
|
7
|
+
AirbrakeAPI.secure = false
|
8
|
+
end
|
9
|
+
|
10
|
+
it "should find error notices" do
|
11
|
+
notices = AirbrakeAPI::Notice.find_by_error_id(1696170)
|
12
|
+
notices.size.should == 30
|
13
|
+
notices.first.id.should == 1234
|
14
|
+
end
|
15
|
+
|
16
|
+
it "should find all error notices" do
|
17
|
+
notices = AirbrakeAPI::Notice.find_all_by_error_id(1696170)
|
18
|
+
notices.size.should == 42
|
19
|
+
end
|
20
|
+
|
21
|
+
it "should find all error notices with a page limit" do
|
22
|
+
notices = AirbrakeAPI::Notice.find_all_by_error_id(1696171, :pages => 2)
|
23
|
+
notices.size.should == 60
|
24
|
+
end
|
25
|
+
|
26
|
+
it "yields batches" do
|
27
|
+
batches = []
|
28
|
+
notices = AirbrakeAPI::Notice.find_all_by_error_id(1696171, :pages => 2) do |batch|
|
29
|
+
batches << batch
|
30
|
+
end
|
31
|
+
notices.size.should == 60
|
32
|
+
batches.map(&:size).should == [30,30]
|
33
|
+
end
|
34
|
+
|
35
|
+
it "should find individual notices" do
|
36
|
+
AirbrakeAPI::Notice.find(1234, 1696170).should_not == nil
|
37
|
+
end
|
38
|
+
|
39
|
+
it "should find a broken notices" do
|
40
|
+
AirbrakeAPI::Notice.find(666, 1696170).should_not == nil
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe AirbrakeAPI::Project do
|
4
|
+
before(:all) do
|
5
|
+
AirbrakeAPI.account = 'myapp'
|
6
|
+
AirbrakeAPI.auth_token = 'abcdefg123456'
|
7
|
+
AirbrakeAPI.secure = false
|
8
|
+
end
|
9
|
+
|
10
|
+
it "should have correct projects path" do
|
11
|
+
AirbrakeAPI::Project.collection_path.should == "/data_api/v1/projects.xml"
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should find projects" do
|
15
|
+
projects = AirbrakeAPI::Project.find(:all)
|
16
|
+
projects.size.should == 4
|
17
|
+
projects.first.id.should == '1'
|
18
|
+
projects.first.name.should == 'Venkman'
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe AirbrakeAPI do
|
4
|
+
|
5
|
+
context "configuration" do
|
6
|
+
before(:each) do
|
7
|
+
AirbrakeAPI.account = nil
|
8
|
+
AirbrakeAPI.auth_token = nil
|
9
|
+
AirbrakeAPI.secure = false
|
10
|
+
end
|
11
|
+
|
12
|
+
it "should allow setting of the account" do
|
13
|
+
AirbrakeAPI.account = 'myapp'
|
14
|
+
AirbrakeAPI.account.should == 'myapp'
|
15
|
+
AirbrakeAPI.account_path.should == 'http://myapp.airbrakeapp.com'
|
16
|
+
end
|
17
|
+
|
18
|
+
it "should allow setting of the auth token" do
|
19
|
+
AirbrakeAPI.auth_token = '123456'
|
20
|
+
AirbrakeAPI.auth_token.should == '123456'
|
21
|
+
end
|
22
|
+
|
23
|
+
it "should allow setting of ssl protocol" do
|
24
|
+
AirbrakeAPI.secure = true
|
25
|
+
AirbrakeAPI.protocol.should == 'https'
|
26
|
+
end
|
27
|
+
|
28
|
+
it "should default to standard http" do
|
29
|
+
AirbrakeAPI.protocol.should == 'http'
|
30
|
+
end
|
31
|
+
|
32
|
+
it "should should implement #configure" do
|
33
|
+
AirbrakeAPI.configure(:account => 'anapp', :auth_token => 'abcdefg', :secure => true)
|
34
|
+
AirbrakeAPI.protocol.should == 'https'
|
35
|
+
AirbrakeAPI.auth_token.should == 'abcdefg'
|
36
|
+
AirbrakeAPI.account.should == 'anapp'
|
37
|
+
AirbrakeAPI.account_path.should == 'https://anapp.airbrakeapp.com'
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
context "when using SSL" do
|
42
|
+
before(:each) do
|
43
|
+
AirbrakeAPI.configure(:account => 'sslapp', :auth_token => 'abcdefg123456', :secure => true)
|
44
|
+
end
|
45
|
+
|
46
|
+
it "should find an error if account is SSL enabled" do
|
47
|
+
error = AirbrakeAPI::Error.find(1696170)
|
48
|
+
error.id.should == 1696170
|
49
|
+
end
|
50
|
+
|
51
|
+
it "should raise an exception if trying to access SSL enabled account with unsecure connection" do
|
52
|
+
AirbrakeAPI.secure = false
|
53
|
+
lambda do
|
54
|
+
AirbrakeAPI::Error.find(1696170)
|
55
|
+
end.should raise_error(AirbrakeAPI::AirbrakeError)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
@@ -0,0 +1,288 @@
|
|
1
|
+
HTTP/1.1 200 OK
|
2
|
+
|
3
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
4
|
+
<notice>
|
5
|
+
<created-at type="datetime">2011-07-06T09:38:44Z</created-at>
|
6
|
+
<project-id type="integer">849</project-id>
|
7
|
+
<updated-at type="datetime">2011-07-06T09:38:44Z</updated-at>
|
8
|
+
<error-message>TypeError: can't convert Fixnum into String</error-message>
|
9
|
+
<group-id type="integer">9004013</group-id>
|
10
|
+
|
11
|
+
<id type="integer">1625800089</id>
|
12
|
+
<environment>
|
13
|
+
<rack-session></rack-session>
|
14
|
+
<HTTP_ACCEPT>
|
15
|
+
</HTTP_ACCEPT>
|
16
|
+
<HTTP_HOST>
|
17
|
+
<de-dawanda-com></de-dawanda-com>
|
18
|
+
</HTTP_HOST>
|
19
|
+
|
20
|
+
<SERVER_NAME>
|
21
|
+
<cookie4-dawanda-com></cookie4-dawanda-com>
|
22
|
+
</SERVER_NAME>
|
23
|
+
<HTTP_X_REAL_IP>
|
24
|
+
<127-0-0-1></127-0-0-1>
|
25
|
+
</HTTP_X_REAL_IP>
|
26
|
+
<HTTP_USER_AGENT>
|
27
|
+
<infopath-2></infopath-2>
|
28
|
+
|
29
|
+
<net-clr-3-0-30729></net-clr-3-0-30729>
|
30
|
+
<trident-4-0></trident-4-0>
|
31
|
+
<msie-7-0></msie-7-0>
|
32
|
+
<net-clr-3-5-30729></net-clr-3-5-30729>
|
33
|
+
<slcc2></slcc2>
|
34
|
+
<gtb7-1></gtb7-1>
|
35
|
+
<windows-nt-6-1></windows-nt-6-1>
|
36
|
+
<net4-0c></net4-0c>
|
37
|
+
<media-center-pc-6-0></media-center-pc-6-0>
|
38
|
+
|
39
|
+
<net-clr-2-0-50727></net-clr-2-0-50727>
|
40
|
+
<wow64></wow64>
|
41
|
+
<msoffice-12></msoffice-12>
|
42
|
+
<mozilla-4-0-compatible></mozilla-4-0-compatible>
|
43
|
+
</HTTP_USER_AGENT>
|
44
|
+
<PASSENGER_SPAWN_METHOD>
|
45
|
+
<smart></smart>
|
46
|
+
</PASSENGER_SPAWN_METHOD>
|
47
|
+
<PASSENGER_CONNECT_PASSWORD>
|
48
|
+
|
49
|
+
<c3q43q3iskkbtzcbxvclhjpuvbbx7ras5bgc7xnbbst></c3q43q3iskkbtzcbxvclhjpuvbbx7ras5bgc7xnbbst>
|
50
|
+
</PASSENGER_CONNECT_PASSWORD>
|
51
|
+
<PASSENGER_FRIENDLY_ERROR_PAGES>
|
52
|
+
<true></true>
|
53
|
+
</PASSENGER_FRIENDLY_ERROR_PAGES>
|
54
|
+
<rack.url_scheme>
|
55
|
+
<http></http>
|
56
|
+
</rack.url_scheme>
|
57
|
+
<CONTENT_LENGTH>
|
58
|
+
|
59
|
+
<0></0>
|
60
|
+
</CONTENT_LENGTH>
|
61
|
+
<rack.request.cookie_hash>
|
62
|
+
<__utma>
|
63
|
+
<65743547-2098315535-1306779867-1309858755-1309861793-21></65743547-2098315535-1306779867-1309858755-1309861793-21>
|
64
|
+
</__utma>
|
65
|
+
<__utmv>
|
66
|
+
<65743547-user></65743547-user>
|
67
|
+
|
68
|
+
</__utmv>
|
69
|
+
<ulc>
|
70
|
+
<1309635910></1309635910>
|
71
|
+
</ulc>
|
72
|
+
<__utmz>
|
73
|
+
<65743547.1306779867.1.1.utmcsr>
|
74
|
+
<(direct)|utmccn>
|
75
|
+
<(direct)|utmcmd>
|
76
|
+
<none></none>
|
77
|
+
</(direct)|utmcmd>
|
78
|
+
|
79
|
+
</(direct)|utmccn>
|
80
|
+
</65743547.1306779867.1.1.utmcsr>
|
81
|
+
</__utmz>
|
82
|
+
<lang>
|
83
|
+
<de-de></de-de>
|
84
|
+
</lang>
|
85
|
+
<remember_token>
|
86
|
+
<1df0267eec3557f3cebc805fe41a8719ae566767></1df0267eec3557f3cebc805fe41a8719ae566767>
|
87
|
+
|
88
|
+
</remember_token>
|
89
|
+
<dawanda_vanity8>
|
90
|
+
<8452434631e07058ce4491ca7d1fc65c></8452434631e07058ce4491ca7d1fc65c>
|
91
|
+
</dawanda_vanity8>
|
92
|
+
<partner>
|
93
|
+
<dawanda-de></dawanda-de>
|
94
|
+
</partner>
|
95
|
+
</rack.request.cookie_hash>
|
96
|
+
|
97
|
+
<rack.errors>
|
98
|
+
<io-0x3c91fa0></io-0x3c91fa0>
|
99
|
+
</rack.errors>
|
100
|
+
<action-controller-request-request-parameters></action-controller-request-request-parameters>
|
101
|
+
<SERVER_PROTOCOL>
|
102
|
+
<http-1-0></http-1-0>
|
103
|
+
</SERVER_PROTOCOL>
|
104
|
+
<SERVER_SOFTWARE>
|
105
|
+
<nginx-0-8-52></nginx-0-8-52>
|
106
|
+
|
107
|
+
</SERVER_SOFTWARE>
|
108
|
+
<PASSENGER_MIN_INSTANCES>
|
109
|
+
<5></5>
|
110
|
+
</PASSENGER_MIN_INSTANCES>
|
111
|
+
<REMOTE_ADDR>
|
112
|
+
<192-168-2-22></192-168-2-22>
|
113
|
+
</REMOTE_ADDR>
|
114
|
+
<PASSENGER_ANALYTICS>
|
115
|
+
|
116
|
+
<false></false>
|
117
|
+
</PASSENGER_ANALYTICS>
|
118
|
+
<rack.version>
|
119
|
+
<0></0>
|
120
|
+
<1></1>
|
121
|
+
</rack.version>
|
122
|
+
<PATH_INFO>
|
123
|
+
<counters-secure-pixel></counters-secure-pixel>
|
124
|
+
|
125
|
+
</PATH_INFO>
|
126
|
+
<rack.run_once>
|
127
|
+
<false></false>
|
128
|
+
</rack.run_once>
|
129
|
+
<SERVER_ADDR>
|
130
|
+
<192-168-2-25></192-168-2-25>
|
131
|
+
</SERVER_ADDR>
|
132
|
+
<rack.request.cookie_string>
|
133
|
+
|
134
|
+
<ulc>
|
135
|
+
<1309635910></1309635910>
|
136
|
+
</ulc>
|
137
|
+
<__utmv>
|
138
|
+
<65743547-user></65743547-user>
|
139
|
+
</__utmv>
|
140
|
+
<__utma>
|
141
|
+
<65743547-2098315535-1306779867-1309858755-1309861793-21></65743547-2098315535-1306779867-1309858755-1309861793-21>
|
142
|
+
|
143
|
+
</__utma>
|
144
|
+
<__utmz>
|
145
|
+
<65743547.1306779867.1.1.utmcsr>
|
146
|
+
<(direct)|utmccn>
|
147
|
+
<(direct)|utmcmd>
|
148
|
+
<none></none>
|
149
|
+
</(direct)|utmcmd>
|
150
|
+
</(direct)|utmccn>
|
151
|
+
</65743547.1306779867.1.1.utmcsr>
|
152
|
+
</__utmz>
|
153
|
+
<remember_token>
|
154
|
+
|
155
|
+
<1df0267eec3557f3cebc805fe41a8719ae566767></1df0267eec3557f3cebc805fe41a8719ae566767>
|
156
|
+
</remember_token>
|
157
|
+
<lang>
|
158
|
+
<de-de></de-de>
|
159
|
+
</lang>
|
160
|
+
</rack.request.cookie_string>
|
161
|
+
</environment>
|
162
|
+
<session>
|
163
|
+
|
164
|
+
<data>
|
165
|
+
</data>
|
166
|
+
</session>
|
167
|
+
<request>
|
168
|
+
<rails-root>/srv/dawanda.com/releases/20110622211451</rails-root>
|
169
|
+
<url>http://de.dawanda.com/counters/secure_pixel?data=eJxj4ajmsOJKL8ovLVCSjs9NzMzRTUnVzS9KSS2KL87ILChITbHiTEksSVXiNzIwNNQ1MNc1MLPizEvMTVXiKstMLS8GAJ-5FAY|b004b9e2a6bde04eb349bd1d51dced20aeacab2c&expires=never</url>
|
170
|
+
<params>
|
171
|
+
|
172
|
+
<data>
|
173
|
+
<ejxj4ajmsojkl8ovlvcsjs9nzmzrtunvzs9kss2kl87ilchitbhitekssvxinziwnnq1mnc1mlpizevmtvxikstmls8gaj-5fay-b004b9e2a6bde04eb349bd1d51dced20aeacab2c></ejxj4ajmsojkl8ovlvcsjs9nzmzrtunvzs9kss2kl87ilchitbhitekssvxinziwnnq1mnc1mlpizevmtvxikstmls8gaj-5fay-b004b9e2a6bde04eb349bd1d51dced20aeacab2c>
|
174
|
+
</data>
|
175
|
+
<expires>
|
176
|
+
<never></never>
|
177
|
+
</expires>
|
178
|
+
<action>secure_pixel</action>
|
179
|
+
<controller>counters</controller>
|
180
|
+
|
181
|
+
</params>
|
182
|
+
</request>
|
183
|
+
<backtrace>
|
184
|
+
<line>[PROJECT_ROOT]/app/models/counter.rb:64:in `+'</line>
|
185
|
+
<line>[PROJECT_ROOT]/app/models/counter.rb:64:in `counter_for_date'</line>
|
186
|
+
<line>[PROJECT_ROOT]/app/models/counter.rb:54:in `counter_id_for_date'</line>
|
187
|
+
<line>[PROJECT_ROOT]/vendor/plugins/cachy/lib/cachy.rb:28:in `cache'</line>
|
188
|
+
|
189
|
+
<line>[PROJECT_ROOT]/app/models/counter.rb:53:in `counter_id_for_date'</line>
|
190
|
+
<line>[PROJECT_ROOT]/app/models/counter.rb:12:in `increment_for_date'</line>
|
191
|
+
<line>[PROJECT_ROOT]/app/controllers/counters_controller.rb:16:in `secure_pixel'</line>
|
192
|
+
<line>[GEM_ROOT]/gems/actionpack-2.3.11/lib/action_controller/base.rb:1333:in `send'</line>
|
193
|
+
<line>[GEM_ROOT]/gems/actionpack-2.3.11/lib/action_controller/base.rb:1333:in `perform_action_without_filters'</line>
|
194
|
+
<line>[GEM_ROOT]/gems/actionpack-2.3.11/lib/action_controller/filters.rb:617:in `call_filters'</line>
|
195
|
+
|
196
|
+
<line>[GEM_ROOT]/gems/actionpack-2.3.11/lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'</line>
|
197
|
+
<line>[GEM_ROOT]/gems/actionpack-2.3.11/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'</line>
|
198
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/activesupport-2.3.11/lib/active_support/core_ext/benchmark.rb:17:in `ms'</line>
|
199
|
+
<line>/usr/local/lib/ruby/1.8/benchmark.rb:308:in `realtime'</line>
|
200
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/activesupport-2.3.11/lib/active_support/core_ext/benchmark.rb:17:in `ms'</line>
|
201
|
+
<line>[GEM_ROOT]/gems/actionpack-2.3.11/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'</line>
|
202
|
+
|
203
|
+
<line>[GEM_ROOT]/gems/actionpack-2.3.11/lib/action_controller/rescue.rb:160:in `perform_action_without_flash'</line>
|
204
|
+
<line>[GEM_ROOT]/gems/actionpack-2.3.11/lib/action_controller/flash.rb:151:in `perform_action_without_newrelic_trace'</line>
|
205
|
+
<line>[GEM_ROOT]/gems/newrelic_rpm-2.13.3/lib/new_relic/agent/instrumentation/controller_instrumentation.rb:254:in `perform_action'</line>
|
206
|
+
<line>[GEM_ROOT]/gems/newrelic_rpm-2.13.3/lib/new_relic/agent/method_tracer.rb:141:in `trace_execution_scoped'</line>
|
207
|
+
<line>[GEM_ROOT]/gems/newrelic_rpm-2.13.3/lib/new_relic/agent/instrumentation/controller_instrumentation.rb:247:in `perform_action'</line>
|
208
|
+
<line>[GEM_ROOT]/gems/actionpack-2.3.11/lib/action_controller/base.rb:532:in `send'</line>
|
209
|
+
|
210
|
+
<line>[GEM_ROOT]/gems/actionpack-2.3.11/lib/action_controller/base.rb:532:in `process_without_filters'</line>
|
211
|
+
<line>[GEM_ROOT]/gems/actionpack-2.3.11/lib/action_controller/filters.rb:606:in `process'</line>
|
212
|
+
<line>[GEM_ROOT]/gems/actionpack-2.3.11/lib/action_controller/base.rb:391:in `process'</line>
|
213
|
+
<line>[GEM_ROOT]/gems/actionpack-2.3.11/lib/action_controller/base.rb:386:in `call'</line>
|
214
|
+
<line>[GEM_ROOT]/gems/actionpack-2.3.11/lib/action_controller/routing/route_set.rb:438:in `call'</line>
|
215
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/actionpack-2.3.11/lib/action_controller/dispatcher.rb:87:in `dispatch'</line>
|
216
|
+
|
217
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/actionpack-2.3.11/lib/action_controller/dispatcher.rb:121:in `_call'</line>
|
218
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/actionpack-2.3.11/lib/action_controller/dispatcher.rb:130:in `build_middleware_stack'</line>
|
219
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/activerecord-2.3.11/lib/active_record/query_cache.rb:29:in `call'</line>
|
220
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/activerecord-2.3.11/lib/active_record/query_cache.rb:29:in `call'</line>
|
221
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/activerecord-2.3.11/lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache'</line>
|
222
|
+
<line>[PROJECT_ROOT]/vendor/plugins/masochism/lib/active_reload/connection_proxy.rb:137:in `send'</line>
|
223
|
+
|
224
|
+
<line>[PROJECT_ROOT]/vendor/plugins/masochism/lib/active_reload/connection_proxy.rb:137:in `method_missing'</line>
|
225
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/activerecord-2.3.11/lib/active_record/query_cache.rb:9:in `cache'</line>
|
226
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/activerecord-2.3.11/lib/active_record/query_cache.rb:28:in `call'</line>
|
227
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/activerecord-2.3.11/lib/active_record/connection_adapters/abstract/connection_pool.rb:361:in `call'</line>
|
228
|
+
<line>[PROJECT_ROOT]/vendor/plugins/api-throttling/lib/api_throttling.rb:16:in `call'</line>
|
229
|
+
<line>[PROJECT_ROOT]/lib/http_verb_responder.rb:11:in `call'</line>
|
230
|
+
|
231
|
+
<line>[PROJECT_ROOT]/lib/meta_info.rb:9:in `call'</line>
|
232
|
+
<line>[GEM_ROOT]/gems/actionpack-2.3.11/lib/action_controller/string_coercion.rb:25:in `call'</line>
|
233
|
+
<line>[GEM_ROOT]/gems/rack-1.1.0/lib/rack/head.rb:9:in `call'</line>
|
234
|
+
<line>[GEM_ROOT]/gems/rack-1.1.0/lib/rack/methodoverride.rb:24:in `call'</line>
|
235
|
+
<line>[GEM_ROOT]/gems/actionpack-2.3.11/lib/action_controller/params_parser.rb:15:in `call'</line>
|
236
|
+
<line>[GEM_ROOT]/gems/actionpack-2.3.11/lib/action_controller/session/abstract_store.rb:177:in `call'</line>
|
237
|
+
|
238
|
+
<line>[GEM_ROOT]/gems/activesupport-2.3.11/lib/active_support/cache/strategy/local_cache.rb:25:in `call'</line>
|
239
|
+
<line>[GEM_ROOT]/gems/actionpack-2.3.11/lib/action_controller/failsafe.rb:26:in `call'</line>
|
240
|
+
<line>[GEM_ROOT]/gems/rack-1.1.0/lib/rack/lock.rb:11:in `call'</line>
|
241
|
+
<line>[GEM_ROOT]/gems/rack-1.1.0/lib/rack/lock.rb:11:in `synchronize'</line>
|
242
|
+
<line>[GEM_ROOT]/gems/rack-1.1.0/lib/rack/lock.rb:11:in `call'</line>
|
243
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/actionpack-2.3.11/lib/action_controller/dispatcher.rb:106:in `call'</line>
|
244
|
+
|
245
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/rack/request_handler.rb:96:in `process_request'</line>
|
246
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/abstract_request_handler.rb:513:in `accept_and_process_next_request'</line>
|
247
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/abstract_request_handler.rb:274:in `main_loop'</line>
|
248
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/classic_rails/application_spawner.rb:321:in `start_request_handler'</line>
|
249
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/classic_rails/application_spawner.rb:275:in `send'</line>
|
250
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/classic_rails/application_spawner.rb:275:in `handle_spawn_application'</line>
|
251
|
+
|
252
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/utils.rb:479:in `safe_fork'</line>
|
253
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/classic_rails/application_spawner.rb:270:in `handle_spawn_application'</line>
|
254
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/abstract_server.rb:357:in `__send__'</line>
|
255
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'</line>
|
256
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'</line>
|
257
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/abstract_server.rb:180:in `start'</line>
|
258
|
+
|
259
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/classic_rails/application_spawner.rb:149:in `start'</line>
|
260
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/classic_rails/framework_spawner.rb:268:in `handle_spawn_application'</line>
|
261
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/abstract_server_collection.rb:132:in `lookup_or_add'</line>
|
262
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/classic_rails/framework_spawner.rb:263:in `handle_spawn_application'</line>
|
263
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/abstract_server_collection.rb:82:in `synchronize'</line>
|
264
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/abstract_server_collection.rb:79:in `synchronize'</line>
|
265
|
+
|
266
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/classic_rails/framework_spawner.rb:261:in `handle_spawn_application'</line>
|
267
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/abstract_server.rb:357:in `__send__'</line>
|
268
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'</line>
|
269
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'</line>
|
270
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/abstract_server.rb:180:in `start'</line>
|
271
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/classic_rails/framework_spawner.rb:93:in `start'</line>
|
272
|
+
|
273
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/spawn_manager.rb:219:in `spawn_rails_application'</line>
|
274
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/abstract_server_collection.rb:132:in `lookup_or_add'</line>
|
275
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/spawn_manager.rb:214:in `spawn_rails_application'</line>
|
276
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/abstract_server_collection.rb:82:in `synchronize'</line>
|
277
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/abstract_server_collection.rb:79:in `synchronize'</line>
|
278
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/spawn_manager.rb:213:in `spawn_rails_application'</line>
|
279
|
+
|
280
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/spawn_manager.rb:132:in `spawn_application'</line>
|
281
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/spawn_manager.rb:275:in `handle_spawn_application'</line>
|
282
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/abstract_server.rb:357:in `__send__'</line>
|
283
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'</line>
|
284
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'</line>
|
285
|
+
<line>/usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.0/helper-scripts/passenger-spawn-server:99</line>
|
286
|
+
|
287
|
+
</backtrace>
|
288
|
+
</notice>
|
@@ -0,0 +1,545 @@
|
|
1
|
+
HTTP/1.1 200 OK
|
2
|
+
|
3
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
4
|
+
<groups type="array">
|
5
|
+
<group>
|
6
|
+
<action>index</action>
|
7
|
+
<controller>shades</controller>
|
8
|
+
<created-at type="datetime">2010-04-16T21:45:30Z</created-at>
|
9
|
+
<error-class>ActiveRecord::StatementInvalid</error-class>
|
10
|
+
<error-message>ActiveRecord::StatementInvalid: Mysql::Error: Unknown column 'otype' in 'order clause': SELECT shades.id, shades.member_id, shades.equity_id, shades.etype, shades.shade_type, shade_features.shade_id, shade_features.price_in_cents, shade_features.tra</error-message>
|
11
|
+
<file>/data/myapp/releases/20100416200739/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb</file>
|
12
|
+
<id type="integer">1696170</id>
|
13
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
14
|
+
<line-number type="integer">219</line-number>
|
15
|
+
<most-recent-notice-at type="datetime">2010-04-24T02:27:11Z</most-recent-notice-at>
|
16
|
+
<notice-hash>71ce436b9c091d468daf479eeee4b216</notice-hash>
|
17
|
+
<notices-count type="integer">455</notices-count>
|
18
|
+
<project-id type="integer">248</project-id>
|
19
|
+
<rails-env>production</rails-env>
|
20
|
+
<resolved type="boolean">false</resolved>
|
21
|
+
<updated-at type="datetime">2010-04-24T02:27:11Z</updated-at>
|
22
|
+
</group>
|
23
|
+
<group>
|
24
|
+
<action>index</action>
|
25
|
+
<controller>member_ballots</controller>
|
26
|
+
<created-at type="datetime">2010-04-16T20:19:25Z</created-at>
|
27
|
+
<error-class>ActiveRecord::StatementInvalid</error-class>
|
28
|
+
<error-message>ActiveRecord::StatementInvalid: Mysql::Error: Unknown column 'group_count' in 'order clause': SELECT `members`.* FROM `members` right join member_ballots on member_ballots.member_id = members.id WHERE (member_ballots.posting_id = 4703) ORDER BY `group_cou</error-message>
|
29
|
+
<file>/data/myapp/releases/20100416200739/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb</file>
|
30
|
+
<id type="integer">1695879</id>
|
31
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
32
|
+
<line-number type="integer">219</line-number>
|
33
|
+
<most-recent-notice-at type="datetime">2010-04-24T02:25:41Z</most-recent-notice-at>
|
34
|
+
<notice-hash>8e80ee8d42a6922f28d936eb25b1203e</notice-hash>
|
35
|
+
<notices-count type="integer">895</notices-count>
|
36
|
+
<project-id type="integer">248</project-id>
|
37
|
+
<rails-env>production</rails-env>
|
38
|
+
<resolved type="boolean">false</resolved>
|
39
|
+
<updated-at type="datetime">2010-04-24T02:25:41Z</updated-at>
|
40
|
+
</group>
|
41
|
+
<group>
|
42
|
+
<action>index</action>
|
43
|
+
<controller>shade_notes</controller>
|
44
|
+
<created-at type="datetime">2010-04-17T02:21:58Z</created-at>
|
45
|
+
<error-class>NoMethodError</error-class>
|
46
|
+
<error-message>NoMethodError: undefined method `timezone_adjusted_shaded_at' for nil:NilClass</error-message>
|
47
|
+
<file>/data/myapp/releases/20100416200739/app/helpers/application_helper.rb</file>
|
48
|
+
<id type="integer">1696798</id>
|
49
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
50
|
+
<line-number type="integer">48</line-number>
|
51
|
+
<most-recent-notice-at type="datetime">2010-04-24T02:20:32Z</most-recent-notice-at>
|
52
|
+
<notice-hash>5802da99c915c425c22799e68a208144</notice-hash>
|
53
|
+
<notices-count type="integer">36</notices-count>
|
54
|
+
<project-id type="integer">248</project-id>
|
55
|
+
<rails-env>production</rails-env>
|
56
|
+
<resolved type="boolean">false</resolved>
|
57
|
+
<updated-at type="datetime">2010-04-24T02:20:32Z</updated-at>
|
58
|
+
</group>
|
59
|
+
<group>
|
60
|
+
<action>show</action>
|
61
|
+
<controller>company</controller>
|
62
|
+
<created-at type="datetime">2010-04-16T21:54:58Z</created-at>
|
63
|
+
<error-class>NoMethodError</error-class>
|
64
|
+
<error-message>NoMethodError: undefined method `name' for nil:NilClass</error-message>
|
65
|
+
<file>/data/myapp/releases/20100416200739/app/views/company/show.html.erb</file>
|
66
|
+
<id type="integer">1696205</id>
|
67
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
68
|
+
<line-number type="integer">23</line-number>
|
69
|
+
<most-recent-notice-at type="datetime">2010-04-24T00:07:15Z</most-recent-notice-at>
|
70
|
+
<notice-hash>7544a3924645e8dab5c1a2c1151bc5b2</notice-hash>
|
71
|
+
<notices-count type="integer">188</notices-count>
|
72
|
+
<project-id type="integer">248</project-id>
|
73
|
+
<rails-env>production</rails-env>
|
74
|
+
<resolved type="boolean">false</resolved>
|
75
|
+
<updated-at type="datetime">2010-04-24T00:04:57Z</updated-at>
|
76
|
+
</group>
|
77
|
+
<group>
|
78
|
+
<action>show</action>
|
79
|
+
<controller>company</controller>
|
80
|
+
<created-at type="datetime">2010-04-17T02:33:36Z</created-at>
|
81
|
+
<error-class>NoMethodError</error-class>
|
82
|
+
<error-message>NoMethodError: undefined method `name' for nil:NilClass</error-message>
|
83
|
+
<file>/data/myapp/releases/20100416200739/app/views/company/show.html.erb</file>
|
84
|
+
<id type="integer">1696825</id>
|
85
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
86
|
+
<line-number type="integer">46</line-number>
|
87
|
+
<most-recent-notice-at type="datetime">2010-04-24T00:05:35Z</most-recent-notice-at>
|
88
|
+
<notice-hash>c03c3f98fbfdb69fb35ec297b49d11ad</notice-hash>
|
89
|
+
<notices-count type="integer">34</notices-count>
|
90
|
+
<project-id type="integer">248</project-id>
|
91
|
+
<rails-env>production</rails-env>
|
92
|
+
<resolved type="boolean">false</resolved>
|
93
|
+
<updated-at type="datetime">2010-04-24T00:05:35Z</updated-at>
|
94
|
+
</group>
|
95
|
+
<group>
|
96
|
+
<action>create</action>
|
97
|
+
<controller>shade_notes</controller>
|
98
|
+
<created-at type="datetime">2010-04-22T19:22:22Z</created-at>
|
99
|
+
<error-class>ArgumentError</error-class>
|
100
|
+
<error-message>ArgumentError: Invalid currency amount</error-message>
|
101
|
+
<file>/data/myapp/releases/20100416200739/vendor/gems/money-2.1.5/lib/money/core_extensions.rb</file>
|
102
|
+
<id type="integer">1723207</id>
|
103
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
104
|
+
<line-number type="integer">116</line-number>
|
105
|
+
<most-recent-notice-at type="datetime">2010-04-23T23:13:26Z</most-recent-notice-at>
|
106
|
+
<notice-hash>e8590fb8e52d9030727f96b83727141a</notice-hash>
|
107
|
+
<notices-count type="integer">2</notices-count>
|
108
|
+
<project-id type="integer">248</project-id>
|
109
|
+
<rails-env>production</rails-env>
|
110
|
+
<resolved type="boolean">false</resolved>
|
111
|
+
<updated-at type="datetime">2010-04-23T23:13:26Z</updated-at>
|
112
|
+
</group>
|
113
|
+
<group>
|
114
|
+
<action>index</action>
|
115
|
+
<controller>topics</controller>
|
116
|
+
<created-at type="datetime">2010-04-17T18:35:21Z</created-at>
|
117
|
+
<error-class>NoMethodError</error-class>
|
118
|
+
<error-message>NoMethodError: undefined method `name' for false:FalseClass</error-message>
|
119
|
+
<file>/data/myapp/releases/20100416200739/app/controllers/topics_controller.rb</file>
|
120
|
+
<id type="integer">1698293</id>
|
121
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
122
|
+
<line-number type="integer">20</line-number>
|
123
|
+
<most-recent-notice-at type="datetime">2010-04-23T22:40:43Z</most-recent-notice-at>
|
124
|
+
<notice-hash>8f12dc095d158b4ed87576587a20fc2a</notice-hash>
|
125
|
+
<notices-count type="integer">11</notices-count>
|
126
|
+
<project-id type="integer">248</project-id>
|
127
|
+
<rails-env>production</rails-env>
|
128
|
+
<resolved type="boolean">false</resolved>
|
129
|
+
<updated-at type="datetime">2010-04-23T22:40:43Z</updated-at>
|
130
|
+
</group>
|
131
|
+
<group>
|
132
|
+
<action>display_name</action>
|
133
|
+
<controller>settings</controller>
|
134
|
+
<created-at type="datetime">2010-04-23T19:02:51Z</created-at>
|
135
|
+
<error-class>AASM::InvalidTransition</error-class>
|
136
|
+
<error-message>AASM::InvalidTransition: Event 'publish' cannot transition from 'published'</error-message>
|
137
|
+
<file>/data/myapp/releases/20100416200739/vendor/gems/gvaughn-aasm-2.0.4/lib/event.rb</file>
|
138
|
+
<id type="integer">1728364</id>
|
139
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
140
|
+
<line-number type="integer">17</line-number>
|
141
|
+
<most-recent-notice-at type="datetime">2010-04-23T19:03:14Z</most-recent-notice-at>
|
142
|
+
<notice-hash>a001037e72d28cb4fe0beca2c065f368</notice-hash>
|
143
|
+
<notices-count type="integer">2</notices-count>
|
144
|
+
<project-id type="integer">248</project-id>
|
145
|
+
<rails-env>production</rails-env>
|
146
|
+
<resolved type="boolean">false</resolved>
|
147
|
+
<updated-at type="datetime">2010-04-23T19:02:52Z</updated-at>
|
148
|
+
</group>
|
149
|
+
<group>
|
150
|
+
<action>index</action>
|
151
|
+
<controller>topics</controller>
|
152
|
+
<created-at type="datetime">2010-04-17T01:44:56Z</created-at>
|
153
|
+
<error-class>RuntimeError</error-class>
|
154
|
+
<error-message>RuntimeError: "NilClass"</error-message>
|
155
|
+
<file>/data/myapp/releases/20100416200739/app/helpers/tk_urls_helper.rb</file>
|
156
|
+
<id type="integer">1696722</id>
|
157
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
158
|
+
<line-number type="integer">74</line-number>
|
159
|
+
<most-recent-notice-at type="datetime">2010-04-23T18:00:25Z</most-recent-notice-at>
|
160
|
+
<notice-hash>8ef369d7bcdd984101e321c3b83a5696</notice-hash>
|
161
|
+
<notices-count type="integer">51</notices-count>
|
162
|
+
<project-id type="integer">248</project-id>
|
163
|
+
<rails-env>production</rails-env>
|
164
|
+
<resolved type="boolean">false</resolved>
|
165
|
+
<updated-at type="datetime">2010-04-23T18:00:25Z</updated-at>
|
166
|
+
</group>
|
167
|
+
<group>
|
168
|
+
<action>update</action>
|
169
|
+
<controller>admin/moderate</controller>
|
170
|
+
<created-at type="datetime">2010-04-19T14:46:26Z</created-at>
|
171
|
+
<error-class>ActiveRecord::StaleObjectError</error-class>
|
172
|
+
<error-message>ActiveRecord::StaleObjectError: Attempted to update a stale object</error-message>
|
173
|
+
<file>/data/myapp/releases/20100416200739/vendor/rails/activerecord/lib/active_record/locking/optimistic.rb</file>
|
174
|
+
<id type="integer">1703705</id>
|
175
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
176
|
+
<line-number type="integer">89</line-number>
|
177
|
+
<most-recent-notice-at type="datetime">2010-04-23T17:57:22Z</most-recent-notice-at>
|
178
|
+
<notice-hash>05eea39bd5b059fe99b877ad87b99729</notice-hash>
|
179
|
+
<notices-count type="integer">5</notices-count>
|
180
|
+
<project-id type="integer">248</project-id>
|
181
|
+
<rails-env>production</rails-env>
|
182
|
+
<resolved type="boolean">false</resolved>
|
183
|
+
<updated-at type="datetime">2010-04-23T17:57:22Z</updated-at>
|
184
|
+
</group>
|
185
|
+
<group>
|
186
|
+
<action>index</action>
|
187
|
+
<controller>welcome</controller>
|
188
|
+
<created-at type="datetime">2010-04-16T20:49:36Z</created-at>
|
189
|
+
<error-class>ActionView::MissingTemplate</error-class>
|
190
|
+
<error-message>ActionView::MissingTemplate: Missing template welcome/_what_we_shade.erb in view path app/views</error-message>
|
191
|
+
<file>/data/myapp/releases/20100416200739/vendor/rails/actionpack/lib/action_view/paths.rb</file>
|
192
|
+
<id type="integer">1695982</id>
|
193
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
194
|
+
<line-number type="integer">66</line-number>
|
195
|
+
<most-recent-notice-at type="datetime">2010-04-23T17:44:24Z</most-recent-notice-at>
|
196
|
+
<notice-hash>b937b06951264480a538c1a0727066ae</notice-hash>
|
197
|
+
<notices-count type="integer">24</notices-count>
|
198
|
+
<project-id type="integer">248</project-id>
|
199
|
+
<rails-env>production</rails-env>
|
200
|
+
<resolved type="boolean">false</resolved>
|
201
|
+
<updated-at type="datetime">2010-04-23T17:44:24Z</updated-at>
|
202
|
+
</group>
|
203
|
+
<group>
|
204
|
+
<action>edit_follows</action>
|
205
|
+
<controller>dashboard</controller>
|
206
|
+
<created-at type="datetime">2010-04-20T16:26:41Z</created-at>
|
207
|
+
<error-class>NoMethodError</error-class>
|
208
|
+
<error-message>NoMethodError: undefined method `each' for nil:NilClass</error-message>
|
209
|
+
<file>/data/myapp/releases/20100416200739/app/controllers/dashboard_controller.rb</file>
|
210
|
+
<id type="integer">1711098</id>
|
211
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
212
|
+
<line-number type="integer">49</line-number>
|
213
|
+
<most-recent-notice-at type="datetime">2010-04-23T17:40:06Z</most-recent-notice-at>
|
214
|
+
<notice-hash>6d9f6fdd171263da486f92f34ad314ee</notice-hash>
|
215
|
+
<notices-count type="integer">7</notices-count>
|
216
|
+
<project-id type="integer">248</project-id>
|
217
|
+
<rails-env>production</rails-env>
|
218
|
+
<resolved type="boolean">false</resolved>
|
219
|
+
<updated-at type="datetime">2010-04-23T17:40:06Z</updated-at>
|
220
|
+
</group>
|
221
|
+
<group>
|
222
|
+
<action></action>
|
223
|
+
<controller></controller>
|
224
|
+
<created-at type="datetime">2010-04-19T23:17:54Z</created-at>
|
225
|
+
<error-class>ActionController::MethodNotAllowed</error-class>
|
226
|
+
<error-message>ActionController::MethodNotAllowed: Only get, put, and delete requests are allowed.</error-message>
|
227
|
+
<file>/data/myapp/releases/20100416200739/vendor/rails/actionpack/lib/action_controller/routing/recognition_optimisation.rb</file>
|
228
|
+
<id type="integer">1706890</id>
|
229
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
230
|
+
<line-number type="integer">64</line-number>
|
231
|
+
<most-recent-notice-at type="datetime">2010-04-23T15:51:53Z</most-recent-notice-at>
|
232
|
+
<notice-hash>697a16d98f9cd4dfc7e3390153f2534c</notice-hash>
|
233
|
+
<notices-count type="integer">5</notices-count>
|
234
|
+
<project-id type="integer">248</project-id>
|
235
|
+
<rails-env>production</rails-env>
|
236
|
+
<resolved type="boolean">false</resolved>
|
237
|
+
<updated-at type="datetime">2010-04-23T15:51:53Z</updated-at>
|
238
|
+
</group>
|
239
|
+
<group>
|
240
|
+
<action>show</action>
|
241
|
+
<controller>forums</controller>
|
242
|
+
<created-at type="datetime">2010-04-18T20:40:30Z</created-at>
|
243
|
+
<error-class>RuntimeError</error-class>
|
244
|
+
<error-message>RuntimeError: "NilClass"</error-message>
|
245
|
+
<file>/data/myapp/releases/20100416200739/app/helpers/tk_urls_helper.rb</file>
|
246
|
+
<id type="integer">1700827</id>
|
247
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
248
|
+
<line-number type="integer">74</line-number>
|
249
|
+
<most-recent-notice-at type="datetime">2010-04-23T13:25:09Z</most-recent-notice-at>
|
250
|
+
<notice-hash>8558b4ce7124c6f9a213ba361ed1a5d3</notice-hash>
|
251
|
+
<notices-count type="integer">12</notices-count>
|
252
|
+
<project-id type="integer">248</project-id>
|
253
|
+
<rails-env>production</rails-env>
|
254
|
+
<resolved type="boolean">false</resolved>
|
255
|
+
<updated-at type="datetime">2010-04-23T13:25:09Z</updated-at>
|
256
|
+
</group>
|
257
|
+
<group>
|
258
|
+
<action>shades_only</action>
|
259
|
+
<controller>trading_activity</controller>
|
260
|
+
<created-at type="datetime">2010-04-18T06:52:59Z</created-at>
|
261
|
+
<error-class>ActionView::MissingTemplate</error-class>
|
262
|
+
<error-message>ActionView::MissingTemplate: Missing template trading_activity/shades_only.erb in view path app/views</error-message>
|
263
|
+
<file>/data/myapp/releases/20100416200739/vendor/rails/actionpack/lib/action_view/paths.rb</file>
|
264
|
+
<id type="integer">1699397</id>
|
265
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
266
|
+
<line-number type="integer">66</line-number>
|
267
|
+
<most-recent-notice-at type="datetime">2010-04-23T13:03:08Z</most-recent-notice-at>
|
268
|
+
<notice-hash>7260ebbbb0102c25cf35e61c29ab433e</notice-hash>
|
269
|
+
<notices-count type="integer">25</notices-count>
|
270
|
+
<project-id type="integer">248</project-id>
|
271
|
+
<rails-env>production</rails-env>
|
272
|
+
<resolved type="boolean">false</resolved>
|
273
|
+
<updated-at type="datetime">2010-04-23T13:03:08Z</updated-at>
|
274
|
+
</group>
|
275
|
+
<group>
|
276
|
+
<action>choose_name</action>
|
277
|
+
<controller>registration</controller>
|
278
|
+
<created-at type="datetime">2010-04-19T02:04:23Z</created-at>
|
279
|
+
<error-class>AASM::InvalidTransition</error-class>
|
280
|
+
<error-message>AASM::InvalidTransition: Event 'publish' cannot transition from 'published'</error-message>
|
281
|
+
<file>/data/myapp/releases/20100416200739/vendor/gems/gvaughn-aasm-2.0.4/lib/event.rb</file>
|
282
|
+
<id type="integer">1701377</id>
|
283
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
284
|
+
<line-number type="integer">17</line-number>
|
285
|
+
<most-recent-notice-at type="datetime">2010-04-23T02:51:25Z</most-recent-notice-at>
|
286
|
+
<notice-hash>850b802e136b07e289d84fddd8d7fca9</notice-hash>
|
287
|
+
<notices-count type="integer">11</notices-count>
|
288
|
+
<project-id type="integer">248</project-id>
|
289
|
+
<rails-env>production</rails-env>
|
290
|
+
<resolved type="boolean">false</resolved>
|
291
|
+
<updated-at type="datetime">2010-04-23T02:51:19Z</updated-at>
|
292
|
+
</group>
|
293
|
+
<group>
|
294
|
+
<action>show</action>
|
295
|
+
<controller>blogs</controller>
|
296
|
+
<created-at type="datetime">2010-04-17T03:14:21Z</created-at>
|
297
|
+
<error-class>ArgumentError</error-class>
|
298
|
+
<error-message>ArgumentError: argument is an invalid Member object</error-message>
|
299
|
+
<file>/data/myapp/releases/20100416200739/app/models/comment.rb</file>
|
300
|
+
<id type="integer">1696899</id>
|
301
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
302
|
+
<line-number type="integer">68</line-number>
|
303
|
+
<most-recent-notice-at type="datetime">2010-04-22T20:32:57Z</most-recent-notice-at>
|
304
|
+
<notice-hash>c321d001a83fe2df9a0c38cce734bb4b</notice-hash>
|
305
|
+
<notices-count type="integer">32</notices-count>
|
306
|
+
<project-id type="integer">248</project-id>
|
307
|
+
<rails-env>production</rails-env>
|
308
|
+
<resolved type="boolean">false</resolved>
|
309
|
+
<updated-at type="datetime">2010-04-22T20:32:57Z</updated-at>
|
310
|
+
</group>
|
311
|
+
<group>
|
312
|
+
<action>index</action>
|
313
|
+
<controller>members</controller>
|
314
|
+
<created-at type="datetime">2010-04-22T13:45:59Z</created-at>
|
315
|
+
<error-class>NoMethodError</error-class>
|
316
|
+
<error-message>NoMethodError: undefined method `pluralize' for nil:NilClass</error-message>
|
317
|
+
<file>/data/myapp/releases/20100416200739/lib/standalone_link_renderer.rb</file>
|
318
|
+
<id type="integer">1721478</id>
|
319
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
320
|
+
<line-number type="integer">23</line-number>
|
321
|
+
<most-recent-notice-at type="datetime">2010-04-22T13:45:59Z</most-recent-notice-at>
|
322
|
+
<notice-hash>40dceaf757049b758327f81e8f9cef9e</notice-hash>
|
323
|
+
<notices-count type="integer">1</notices-count>
|
324
|
+
<project-id type="integer">248</project-id>
|
325
|
+
<rails-env>production</rails-env>
|
326
|
+
<resolved type="boolean">false</resolved>
|
327
|
+
<updated-at type="datetime">2010-04-22T13:45:59Z</updated-at>
|
328
|
+
</group>
|
329
|
+
<group>
|
330
|
+
<action>index</action>
|
331
|
+
<controller>members</controller>
|
332
|
+
<created-at type="datetime">2010-04-17T20:14:27Z</created-at>
|
333
|
+
<error-class>NoMethodError</error-class>
|
334
|
+
<error-message>NoMethodError: undefined method `field_specs' for nil:NilClass</error-message>
|
335
|
+
<file>/data/myapp/releases/20100416200739/lib/filter_helper.rb</file>
|
336
|
+
<id type="integer">1698489</id>
|
337
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
338
|
+
<line-number type="integer">116</line-number>
|
339
|
+
<most-recent-notice-at type="datetime">2010-04-22T11:30:02Z</most-recent-notice-at>
|
340
|
+
<notice-hash>dee5055845a1f738a9c86f3fd70bb19b</notice-hash>
|
341
|
+
<notices-count type="integer">2</notices-count>
|
342
|
+
<project-id type="integer">248</project-id>
|
343
|
+
<rails-env>production</rails-env>
|
344
|
+
<resolved type="boolean">false</resolved>
|
345
|
+
<updated-at type="datetime">2010-04-22T11:30:02Z</updated-at>
|
346
|
+
</group>
|
347
|
+
<group>
|
348
|
+
<action>followers</action>
|
349
|
+
<controller>subscriptions</controller>
|
350
|
+
<created-at type="datetime">2010-04-19T22:20:59Z</created-at>
|
351
|
+
<error-class>NameError</error-class>
|
352
|
+
<error-message>NameError: uninitialized constant SubscriptionsController</error-message>
|
353
|
+
<file>/data/myapp/releases/20100416200739/vendor/rails/activesupport/lib/active_support/dependencies.rb</file>
|
354
|
+
<id type="integer">1706545</id>
|
355
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
356
|
+
<line-number type="integer">443</line-number>
|
357
|
+
<most-recent-notice-at type="datetime">2010-04-22T08:28:09Z</most-recent-notice-at>
|
358
|
+
<notice-hash>32992aac8be6024e6f5783c12e7b6fac</notice-hash>
|
359
|
+
<notices-count type="integer">13</notices-count>
|
360
|
+
<project-id type="integer">248</project-id>
|
361
|
+
<rails-env>production</rails-env>
|
362
|
+
<resolved type="boolean">false</resolved>
|
363
|
+
<updated-at type="datetime">2010-04-22T08:28:09Z</updated-at>
|
364
|
+
</group>
|
365
|
+
<group>
|
366
|
+
<action>index</action>
|
367
|
+
<controller>topics</controller>
|
368
|
+
<created-at type="datetime">2010-04-17T02:59:11Z</created-at>
|
369
|
+
<error-class>NoMethodError</error-class>
|
370
|
+
<error-message>NoMethodError: undefined method `slug' for nil:NilClass</error-message>
|
371
|
+
<file>/data/myapp/releases/20100416200739/app/controllers/topics_controller.rb</file>
|
372
|
+
<id type="integer">1696865</id>
|
373
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
374
|
+
<line-number type="integer">46</line-number>
|
375
|
+
<most-recent-notice-at type="datetime">2010-04-22T05:37:29Z</most-recent-notice-at>
|
376
|
+
<notice-hash>06b34874dd1edf6b90e223702f26a6ec</notice-hash>
|
377
|
+
<notices-count type="integer">72</notices-count>
|
378
|
+
<project-id type="integer">248</project-id>
|
379
|
+
<rails-env>production</rails-env>
|
380
|
+
<resolved type="boolean">false</resolved>
|
381
|
+
<updated-at type="datetime">2010-04-22T05:25:05Z</updated-at>
|
382
|
+
</group>
|
383
|
+
<group>
|
384
|
+
<action>positions</action>
|
385
|
+
<controller>dashboard</controller>
|
386
|
+
<created-at type="datetime">2010-04-21T16:07:14Z</created-at>
|
387
|
+
<error-class>NoMethodError</error-class>
|
388
|
+
<error-message>NoMethodError: undefined method `headline' for nil:NilClass</error-message>
|
389
|
+
<file>/data/myapp/releases/20100416200739/app/views/dashboard/_positions_table.html.erb</file>
|
390
|
+
<id type="integer">1716777</id>
|
391
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
392
|
+
<line-number type="integer">3</line-number>
|
393
|
+
<most-recent-notice-at type="datetime">2010-04-21T16:07:14Z</most-recent-notice-at>
|
394
|
+
<notice-hash>e4f7d77be6a6cc86924bf66023a8c37f</notice-hash>
|
395
|
+
<notices-count type="integer">1</notices-count>
|
396
|
+
<project-id type="integer">248</project-id>
|
397
|
+
<rails-env>production</rails-env>
|
398
|
+
<resolved type="boolean">false</resolved>
|
399
|
+
<updated-at type="datetime">2010-04-21T16:07:14Z</updated-at>
|
400
|
+
</group>
|
401
|
+
<group>
|
402
|
+
<action>index</action>
|
403
|
+
<controller>forum_posts</controller>
|
404
|
+
<created-at type="datetime">2010-04-19T16:15:33Z</created-at>
|
405
|
+
<error-class>WillPaginate::InvalidPage</error-class>
|
406
|
+
<error-message>WillPaginate::InvalidPage: "http://www.laborpascoperu.org.pe/envio11.txt?" given as value, which translates to '0' as page number</error-message>
|
407
|
+
<file>/data/myapp/releases/20100416200739/vendor/gems/will_paginate-2.2.2/lib/will_paginate/collection.rb</file>
|
408
|
+
<id type="integer">1704224</id>
|
409
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
410
|
+
<line-number type="integer">51</line-number>
|
411
|
+
<most-recent-notice-at type="datetime">2010-04-21T15:04:26Z</most-recent-notice-at>
|
412
|
+
<notice-hash>bc870c86d74a7b43ee1ecffb154aad9c</notice-hash>
|
413
|
+
<notices-count type="integer">2</notices-count>
|
414
|
+
<project-id type="integer">248</project-id>
|
415
|
+
<rails-env>production</rails-env>
|
416
|
+
<resolved type="boolean">false</resolved>
|
417
|
+
<updated-at type="datetime">2010-04-21T15:04:26Z</updated-at>
|
418
|
+
</group>
|
419
|
+
<group>
|
420
|
+
<action>update</action>
|
421
|
+
<controller>admin/moderate</controller>
|
422
|
+
<created-at type="datetime">2010-04-17T01:59:37Z</created-at>
|
423
|
+
<error-class>AASM::InvalidTransition</error-class>
|
424
|
+
<error-message>AASM::InvalidTransition: Event 'approve' cannot transition from 'removed'</error-message>
|
425
|
+
<file>/data/myapp/releases/20100416200739/vendor/gems/gvaughn-aasm-2.0.4/lib/event.rb</file>
|
426
|
+
<id type="integer">1696758</id>
|
427
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
428
|
+
<line-number type="integer">17</line-number>
|
429
|
+
<most-recent-notice-at type="datetime">2010-04-21T01:45:26Z</most-recent-notice-at>
|
430
|
+
<notice-hash>1e17db05793e2bb697aabb926c39f0b3</notice-hash>
|
431
|
+
<notices-count type="integer">4</notices-count>
|
432
|
+
<project-id type="integer">248</project-id>
|
433
|
+
<rails-env>production</rails-env>
|
434
|
+
<resolved type="boolean">false</resolved>
|
435
|
+
<updated-at type="datetime">2010-04-21T01:45:26Z</updated-at>
|
436
|
+
</group>
|
437
|
+
<group>
|
438
|
+
<action>show</action>
|
439
|
+
<controller>tags</controller>
|
440
|
+
<created-at type="datetime">2010-04-20T08:14:34Z</created-at>
|
441
|
+
<error-class>NoMethodError</error-class>
|
442
|
+
<error-message>NoMethodError: undefined method `shaded_at' for nil:NilClass</error-message>
|
443
|
+
<file>/data/myapp/releases/20100416200739/app/views/shade_notes/_shade_note.html.erb</file>
|
444
|
+
<id type="integer">1708892</id>
|
445
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
446
|
+
<line-number type="integer">20</line-number>
|
447
|
+
<most-recent-notice-at type="datetime">2010-04-20T08:14:34Z</most-recent-notice-at>
|
448
|
+
<notice-hash>f404dcac7ce0e7c06c40cc9b7a07af3a</notice-hash>
|
449
|
+
<notices-count type="integer">1</notices-count>
|
450
|
+
<project-id type="integer">248</project-id>
|
451
|
+
<rails-env>production</rails-env>
|
452
|
+
<resolved type="boolean">false</resolved>
|
453
|
+
<updated-at type="datetime">2010-04-20T08:14:34Z</updated-at>
|
454
|
+
</group>
|
455
|
+
<group>
|
456
|
+
<action>index</action>
|
457
|
+
<controller>subscriptions</controller>
|
458
|
+
<created-at type="datetime">2010-04-19T20:56:46Z</created-at>
|
459
|
+
<error-class>NameError</error-class>
|
460
|
+
<error-message>NameError: uninitialized constant SubscriptionsController</error-message>
|
461
|
+
<file>/data/myapp/releases/20100416200739/vendor/rails/activesupport/lib/active_support/dependencies.rb</file>
|
462
|
+
<id type="integer">1705954</id>
|
463
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
464
|
+
<line-number type="integer">443</line-number>
|
465
|
+
<most-recent-notice-at type="datetime">2010-04-19T23:31:54Z</most-recent-notice-at>
|
466
|
+
<notice-hash>b6a802f25d9de887fd7ec24e735494fe</notice-hash>
|
467
|
+
<notices-count type="integer">9</notices-count>
|
468
|
+
<project-id type="integer">248</project-id>
|
469
|
+
<rails-env>production</rails-env>
|
470
|
+
<resolved type="boolean">false</resolved>
|
471
|
+
<updated-at type="datetime">2010-04-19T23:31:54Z</updated-at>
|
472
|
+
</group>
|
473
|
+
<group>
|
474
|
+
<action>unfollow</action>
|
475
|
+
<controller>shade_notes</controller>
|
476
|
+
<created-at type="datetime">2010-04-19T20:39:30Z</created-at>
|
477
|
+
<error-class>ActionView::MissingTemplate</error-class>
|
478
|
+
<error-message>ActionView::MissingTemplate: Missing template shade_notes/unfollow.erb in view path app/views</error-message>
|
479
|
+
<file>/data/myapp/releases/20100416200739/vendor/rails/actionpack/lib/action_view/paths.rb</file>
|
480
|
+
<id type="integer">1705850</id>
|
481
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
482
|
+
<line-number type="integer">66</line-number>
|
483
|
+
<most-recent-notice-at type="datetime">2010-04-19T20:39:30Z</most-recent-notice-at>
|
484
|
+
<notice-hash>b94660cab19f29057c4fcd94c3c5c48b</notice-hash>
|
485
|
+
<notices-count type="integer">1</notices-count>
|
486
|
+
<project-id type="integer">248</project-id>
|
487
|
+
<rails-env>production</rails-env>
|
488
|
+
<resolved type="boolean">false</resolved>
|
489
|
+
<updated-at type="datetime">2010-04-19T20:39:30Z</updated-at>
|
490
|
+
</group>
|
491
|
+
<group>
|
492
|
+
<action>show</action>
|
493
|
+
<controller>tags</controller>
|
494
|
+
<created-at type="datetime">2010-04-19T03:59:56Z</created-at>
|
495
|
+
<error-class>NoMethodError</error-class>
|
496
|
+
<error-message>NoMethodError: undefined method `equity' for nil:NilClass</error-message>
|
497
|
+
<file>/data/myapp/releases/20100416200739/app/views/shade_notes/_shade_note.html.erb</file>
|
498
|
+
<id type="integer">1701733</id>
|
499
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
500
|
+
<line-number type="integer">12</line-number>
|
501
|
+
<most-recent-notice-at type="datetime">2010-04-19T10:45:52Z</most-recent-notice-at>
|
502
|
+
<notice-hash>82fe9e4b12b7dbce23ae3f1936ecb5d7</notice-hash>
|
503
|
+
<notices-count type="integer">2</notices-count>
|
504
|
+
<project-id type="integer">248</project-id>
|
505
|
+
<rails-env>production</rails-env>
|
506
|
+
<resolved type="boolean">false</resolved>
|
507
|
+
<updated-at type="datetime">2010-04-19T10:45:52Z</updated-at>
|
508
|
+
</group>
|
509
|
+
<group>
|
510
|
+
<action>display_name</action>
|
511
|
+
<controller>settings</controller>
|
512
|
+
<created-at type="datetime">2010-04-18T20:54:44Z</created-at>
|
513
|
+
<error-class>ActiveRecord::StaleObjectError</error-class>
|
514
|
+
<error-message>ActiveRecord::StaleObjectError: Attempted to update a stale object</error-message>
|
515
|
+
<file>/data/myapp/releases/20100416200739/vendor/rails/activerecord/lib/active_record/locking/optimistic.rb</file>
|
516
|
+
<id type="integer">1700843</id>
|
517
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
518
|
+
<line-number type="integer">89</line-number>
|
519
|
+
<most-recent-notice-at type="datetime">2010-04-18T20:54:44Z</most-recent-notice-at>
|
520
|
+
<notice-hash>43175a902ce471d659b1c7dde0d1737f</notice-hash>
|
521
|
+
<notices-count type="integer">1</notices-count>
|
522
|
+
<project-id type="integer">248</project-id>
|
523
|
+
<rails-env>production</rails-env>
|
524
|
+
<resolved type="boolean">false</resolved>
|
525
|
+
<updated-at type="datetime">2010-04-18T20:54:44Z</updated-at>
|
526
|
+
</group>
|
527
|
+
<group>
|
528
|
+
<action>display_name</action>
|
529
|
+
<controller>settings</controller>
|
530
|
+
<created-at type="datetime">2010-04-18T20:54:44Z</created-at>
|
531
|
+
<error-class>ActiveRecord::StaleObjectError</error-class>
|
532
|
+
<error-message>ActiveRecord::StaleObjectError: Attempted to update a stale object</error-message>
|
533
|
+
<file>/data/myapp/releases/20100416200739/vendor/rails/activerecord/lib/active_record/locking/optimistic.rb</file>
|
534
|
+
<id type="integer">1700843</id>
|
535
|
+
<lighthouse-ticket-id type="integer" nil="true"></lighthouse-ticket-id>
|
536
|
+
<line-number type="integer">89</line-number>
|
537
|
+
<most-recent-notice-at type="datetime">2010-04-18T20:54:44Z</most-recent-notice-at>
|
538
|
+
<notice-hash>43175a902ce471d659b1c7dde0d1737f</notice-hash>
|
539
|
+
<notices-count type="integer">1</notices-count>
|
540
|
+
<project-id type="integer">248</project-id>
|
541
|
+
<rails-env>production</rails-env>
|
542
|
+
<resolved type="boolean">false</resolved>
|
543
|
+
<updated-at type="datetime">2010-04-18T20:54:44Z</updated-at>
|
544
|
+
</group>
|
545
|
+
</groups>
|