Running ruby 1.9.2p290 and the latest version of Sinatra.

When I try to run my Sinatra app

  ruby application.rb 

I get an error

  C:/RailsInstaller/Ruby1.9.2/lib/ruby/gems/1.9.1/gems/rack-1.3.4/lib/rack/backports/uri/common_192.rb:53: warning: already initialized constant WFKV_

I checked out Rake "already initialized constant" warning and tried that fix but had no success. http://localhost:4567/ also produces nothing.

link|improve this question

76% accept rate
feedback

3 Answers

up vote 0 down vote accepted

Simple fix: gem 'rack' , '1.3.3' (use the previous version of rack and the error goes away.) Much better than simply silencing.

link|improve this answer
This is a bad idea as explained in one of the comments on this blog post concerning the warning. Your best bet is to just ignore the warning. Long story short: rack 1.3.3 had a denial of service attack vulnerability that 1.3.4 resolved. – nzifnab Oct 26 '11 at 20:28
feedback

This will be fixed in Rack 1.3.5 and 1.4.0.

link|improve this answer
This IS fixed in Rack 1.3.5 – s01ipsist Dec 4 '11 at 23:42
feedback

It's a warning, not an error. You can safely ignore it, and there's nothing you can do to stop it from coming up without editing the rack source code. If the warning bugs you, you can always temporarily silence Ruby with this method from Rails:

def silence_stream(stream)
  old_stream = stream.dup
  stream.reopen(RbConfig::CONFIG['host_os'] =~ /mswin|mingw/ ? 'NUL:' : '/dev/null')
  stream.sync = true
  yield
ensure
  stream.reopen(old_stream)
end

silence_stream(STDERR) do
  silence_stream(STDOUT) do
    require 'sinatra'
  end
end

# rest of code as usual...

Or to block just warnings instead of the entire stderr and stdout streams:

verbose = $VERBOSE
$VERBOSE = nil
require 'sinatra'
$VERBOSE = verbose

# rest of code as usual...

If that isn't working then you're probably blocking the wrong part of the code. Since rack is causing the warning, I'd assume that it happens when rack is first required. This probably is done through Sinatra for you, which is why I was saying to block warnings for the duration of requiring sinatra. You could try putting the rest of your requires on the lines immediately next to require 'sinatra' in either of the above.

link|improve this answer
Where would I place this code? In my Sinatra application.rb? – Rezen Oct 5 '11 at 23:46
Wherever you currently have include 'sinatra' (delete that line and replace by the above code), so yes I'd assume application.rb. The warning doesn't cause any problems though, so you could just leave it as is, but up to you. – arcresu Oct 6 '11 at 0:22
Sorry, I'm not sure what I was thinking - I meant require not include. Edited to fix this. – arcresu Oct 6 '11 at 1:47
Ya I tried the updated version but still no success. It seems to be a problem with my setup? – Rezen Oct 6 '11 at 19:36
Just updated the answer. Perhaps Windows handles output stream redirection differently (although this answer seems to imply not). The second method should work anyway, and it's neater. – arcresu Oct 6 '11 at 21:33
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.