Skip to content

Commit

Permalink
Actually remove thin from server selection
Browse files Browse the repository at this point in the history
After sinatra#1624 `thin` is still left in this block, which keeps it the most preferred server in regular Ruby. Let's remove it for real this time.
  • Loading branch information
felixonmars committed Oct 21, 2022
1 parent 8ff496b commit c3d92c5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/sinatra/base.rb
Expand Up @@ -1850,7 +1850,6 @@ class << self
server.unshift 'puma'
server.unshift 'falcon' if ruby_engine != 'jruby'
server.unshift 'mongrel' if ruby_engine.nil?
server.unshift 'thin' if ruby_engine != 'jruby'
server.unshift 'trinidad' if ruby_engine == 'jruby'

set :absolute_redirects, true
Expand Down

0 comments on commit c3d92c5

Please sign in to comment.