Skip to content

Instantly share code, notes, and snippets.

@ciaranarcher
Created June 25, 2012 14:24
Show Gist options
  • Save ciaranarcher/2988953 to your computer and use it in GitHub Desktop.
Save ciaranarcher/2988953 to your computer and use it in GitHub Desktop.
TB Messaging Error
# create queue
Padrino.after_load do
#
# Create message queues
##
TorqueBox::Messaging::Queue.start '/queues/metrics/scripttiming'
p '/queues/metrics/scripttiming queue started in Padrino.'
end
# publish (throwing error)
queue = inject('/queues/metrics/scripttiming')
p "queue injected: " + queue.to_s
queue.publish "A text message: #{params.to_s}"
p "message published"
# Error:
15:22:43,225 INFO [org.torquebox.core.runtime] (Thread-101) Setting up Bundler
15:22:44,372 INFO [org.torquebox.core.runtime] (Thread-101) Created ruby runtime (ruby_version: RUBY1_9, compile_mode: JIT, app: hermes, context: web) in 2.19s
15:23:24,913 INFO [org.hornetq.core.server.impl.HornetQServerImpl] (http--127.0.0.1-8080-1) trying to deploy queue jms.queue./queues/metrics/scripttiming
15:23:24,916 INFO [stdout] (http--127.0.0.1-8080-1) "/queues/metrics/script_timing queue started in Padrino."
15:23:26,049 INFO [JRubyEhcache] (http--127.0.0.1-8080-1) Using Ehcache version 2.4.6
15:23:26,629 INFO [stdout] (http--127.0.0.1-8080-1) "/queues/metrics/script_timing queue started in Padrino."
15:23:26,828 INFO [stdout] (http--127.0.0.1-8080-1) "queue injected: "
15:23:27,287 ERROR [stderr] (http--127.0.0.1-8080-1) NoMethodError - undefined method `publish' for nil:NilClass:
15:23:27,288 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/repos/hermes/apps/tech/controllers/perf.rb:29:in `POST /perf/script_timing'
15:23:27,289 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyMethod.java:117:in `call'
15:23:27,290 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/application/routing.rb:569:in `route'
15:23:27,291 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyProc.java:258:in `call'
15:23:27,291 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/application/routing.rb:51:in `process_destination_path'
15:23:27,292 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:801:in `route_eval'
15:23:27,293 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/application/routing.rb:51:in `process_destination_path'
15:23:27,294 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyKernel.java:1197:in `catch'
15:23:27,295 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/application/routing.rb:51:in `process_destination_path'
15:23:27,296 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyBasicObject.java:1730:in `instance_eval'
15:23:27,296 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/application/routing.rb:25:in `process_destination_path'
15:23:27,297 ERROR [stderr] (http--127.0.0.1-8080-1) (eval):16:in `lookup_17 script_timing'
15:23:27,298 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyKernel.java:1197:in `catch'
15:23:27,298 ERROR [stderr] (http--127.0.0.1-8080-1) (eval):6:in `lookup_17 script_timing'
15:23:27,299 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyBasicObject.java:1704:in `__send__'
15:23:27,299 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyKernel.java:2101:in `send'
15:23:27,300 ERROR [stderr] (http--127.0.0.1-8080-1) (eval):8:in `lookup_2 perf'
15:23:27,300 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyBasicObject.java:1704:in `__send__'
15:23:27,301 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyKernel.java:2101:in `send'
15:23:27,301 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/http_router-0.10.2/lib/http_router/node/root.rb:44:in `[]'
15:23:27,302 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/http_router-0.10.2/lib/http_router/node/root.rb:13:in `[]'
15:23:27,303 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/http_router-0.10.2/lib/http_router.rb:119:in `call'
15:23:27,305 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyKernel.java:1197:in `catch'
15:23:27,306 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/http_router-0.10.2/lib/http_router.rb:119:in `call'
15:23:27,307 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/application/routing.rb:919:in `route!'
15:23:27,308 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/application/routing.rb:909:in `dispatch!'
15:23:27,309 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:719:in `call!'
15:23:27,310 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:871:in `invoke'
15:23:27,311 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyKernel.java:1197:in `catch'
15:23:27,311 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:871:in `invoke'
15:23:27,312 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:719:in `call!'
15:23:27,313 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:705:in `call'
15:23:27,314 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:766:in `forward'
15:23:27,315 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:835:in `route_missing'
15:23:27,315 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:796:in `route!'
15:23:27,316 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:792:in `route!'
15:23:27,317 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:792:in `route!'
15:23:27,318 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:886:in `dispatch!'
15:23:27,319 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:719:in `call!'
15:23:27,319 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:871:in `invoke'
15:23:27,320 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyKernel.java:1197:in `catch'
15:23:27,321 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:871:in `invoke'
15:23:27,321 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:719:in `call!'
15:23:27,322 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:705:in `call'
15:23:27,323 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-protection-1.2.0/lib/rack/protection/xss_header.rb:22:in `call'
15:23:27,324 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-protection-1.2.0/lib/rack/protection/base.rb:47:in `call'
15:23:27,325 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-protection-1.2.0/lib/rack/protection/base.rb:47:in `call'
15:23:27,326 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-protection-1.2.0/lib/rack/protection/path_traversal.rb:16:in `call'
15:23:27,326 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-protection-1.2.0/lib/rack/protection/json_csrf.rb:17:in `call'
15:23:27,327 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-protection-1.2.0/lib/rack/protection/base.rb:47:in `call'
15:23:27,328 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-protection-1.2.0/lib/rack/protection/xss_header.rb:22:in `call'
15:23:27,329 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
15:23:27,330 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
15:23:27,331 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-1.4.1/lib/rack/logger.rb:15:in `call'
15:23:27,331 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-1.4.1/lib/rack/head.rb:9:in `call'
15:23:27,332 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
15:23:27,333 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/showexceptions.rb:21:in `call'
15:23:27,334 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/warden-1.2.1/lib/warden/manager.rb:35:in `call'
15:23:27,335 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyKernel.java:1197:in `catch'
15:23:27,336 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/warden-1.2.1/lib/warden/manager.rb:34:in `call'
15:23:27,337 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-1.4.1/lib/rack/head.rb:9:in `call'
15:23:27,338 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
15:23:27,339 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/reloader.rb:250:in `call'
15:23:27,340 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/logger.rb:388:in `call'
15:23:27,341 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/showexceptions.rb:21:in `call'
15:23:27,342 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:1334:in `call'
15:23:27,367 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:1416:in `synchronize'
15:23:27,368 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:1334:in `call'
15:23:27,369 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/router.rb:85:in `call'
15:23:27,370 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyArray.java:1615:in `each'
15:23:27,386 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/router.rb:76:in `call'
15:23:27,387 ERROR [stderr] (http--127.0.0.1-8080-1) NoMethodError - undefined method `publish' for nil:NilClass:
15:23:27,388 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/repos/hermes/apps/tech/controllers/perf.rb:29:in `POST /perf/script_timing'
15:23:27,388 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyMethod.java:117:in `call'
15:23:27,389 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/application/routing.rb:569:in `route'
15:23:27,390 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyProc.java:258:in `call'
15:23:27,390 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/application/routing.rb:51:in `process_destination_path'
15:23:27,401 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:801:in `route_eval'
15:23:27,402 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/application/routing.rb:51:in `process_destination_path'
15:23:27,403 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyKernel.java:1197:in `catch'
15:23:27,404 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/application/routing.rb:51:in `process_destination_path'
15:23:27,405 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyBasicObject.java:1730:in `instance_eval'
15:23:27,405 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/application/routing.rb:25:in `process_destination_path'
15:23:27,406 ERROR [stderr] (http--127.0.0.1-8080-1) (eval):16:in `lookup_17 script_timing'
15:23:27,407 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyKernel.java:1197:in `catch'
15:23:27,407 ERROR [stderr] (http--127.0.0.1-8080-1) (eval):6:in `lookup_17 script_timing'
15:23:27,408 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyBasicObject.java:1704:in `__send__'
15:23:27,409 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyKernel.java:2101:in `send'
15:23:27,409 ERROR [stderr] (http--127.0.0.1-8080-1) (eval):8:in `lookup_2 perf'
15:23:27,410 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyBasicObject.java:1704:in `__send__'
15:23:27,410 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyKernel.java:2101:in `send'
15:23:27,411 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/http_router-0.10.2/lib/http_router/node/root.rb:44:in `[]'
15:23:27,412 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/http_router-0.10.2/lib/http_router/node/root.rb:13:in `[]'
15:23:27,413 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/http_router-0.10.2/lib/http_router.rb:119:in `call'
15:23:27,413 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyKernel.java:1197:in `catch'
15:23:27,414 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/http_router-0.10.2/lib/http_router.rb:119:in `call'
15:23:27,415 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/application/routing.rb:919:in `route!'
15:23:27,416 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/application/routing.rb:909:in `dispatch!'
15:23:27,417 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:719:in `call!'
15:23:27,418 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:871:in `invoke'
15:23:27,418 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyKernel.java:1197:in `catch'
15:23:27,419 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:871:in `invoke'
15:23:27,420 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:719:in `call!'
15:23:27,420 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:705:in `call'
15:23:27,421 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:766:in `forward'
15:23:27,422 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:835:in `route_missing'
15:23:27,423 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:796:in `route!'
15:23:27,424 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:792:in `route!'
15:23:27,424 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:792:in `route!'
15:23:27,425 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:886:in `dispatch!'
15:23:27,426 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:719:in `call!'
15:23:27,427 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:871:in `invoke'
15:23:27,428 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyKernel.java:1197:in `catch'
15:23:27,429 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:871:in `invoke'
15:23:27,430 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:719:in `call!'
15:23:27,431 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:705:in `call'
15:23:27,432 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-protection-1.2.0/lib/rack/protection/xss_header.rb:22:in `call'
15:23:27,432 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-protection-1.2.0/lib/rack/protection/base.rb:47:in `call'
15:23:27,433 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-protection-1.2.0/lib/rack/protection/base.rb:47:in `call'
15:23:27,434 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-protection-1.2.0/lib/rack/protection/path_traversal.rb:16:in `call'
15:23:27,435 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-protection-1.2.0/lib/rack/protection/json_csrf.rb:17:in `call'
15:23:27,436 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-protection-1.2.0/lib/rack/protection/base.rb:47:in `call'
15:23:27,437 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-protection-1.2.0/lib/rack/protection/xss_header.rb:22:in `call'
15:23:27,438 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
15:23:27,439 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
15:23:27,440 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-1.4.1/lib/rack/logger.rb:15:in `call'
15:23:27,441 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-1.4.1/lib/rack/head.rb:9:in `call'
15:23:27,442 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
15:23:27,443 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/showexceptions.rb:21:in `call'
15:23:27,443 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/warden-1.2.1/lib/warden/manager.rb:35:in `call'
15:23:27,444 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyKernel.java:1197:in `catch'
15:23:27,445 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/warden-1.2.1/lib/warden/manager.rb:34:in `call'
15:23:27,445 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-1.4.1/lib/rack/head.rb:9:in `call'
15:23:27,446 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
15:23:27,447 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/reloader.rb:250:in `call'
15:23:27,448 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/logger.rb:388:in `call'
15:23:27,448 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/showexceptions.rb:21:in `call'
15:23:27,449 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:1334:in `call'
15:23:27,450 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:1416:in `synchronize'
15:23:27,451 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/sinatra-1.3.2/lib/sinatra/base.rb:1334:in `call'
15:23:27,451 ERROR [stderr] (http--127.0.0.1-8080-1) C:/dev/torquebox/torquebox-2.x/jruby/lib/ruby/gems/1.8/gems/padrino-core-0.10.7/lib/padrino-core/router.rb:85:in `call'
15:23:27,452 ERROR [stderr] (http--127.0.0.1-8080-1) org/jruby/RubyArray.java:1615:in `each'
15:23:27,636 INFO [stdout] (http--127.0.0.1-8080-1) ←[36m DEBUG←[0m -←[33m ←[0m←[31m POST←[0m (←[31m←[1m1.7020ms←[0m←[0m) /tech/perf/script_timing - ←[1m500←[0m Internal Server Error
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment