Closed olleolleolle closed 3 months ago
The current behavior is "derive from Rack::Server", in Padrino::Server.
That emits a deprecation warning when using Rack 3:
Rack::Server is deprecated and replaced by Rackup::Server
That there are no deprecation warnings when running on Rack 3.
I assume rack 3.x introduced this, when Rackup gem took the lead in handling config.ru files.
config.ru
This has been fixed, and Padrino::Server no longer derives from that class.
What is the current behavior?
The current behavior is "derive from Rack::Server", in Padrino::Server.
That emits a deprecation warning when using Rack 3:
What is the expected behavior?
That there are no deprecation warnings when running on Rack 3.
Which versions of Ruby, Padrino, Sinatra, Rack, OS are you using? Did this work in previous versions?
I assume rack 3.x introduced this, when Rackup gem took the lead in handling
config.ru
files.