You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I hit this issue as well and I think it is related to the port issue @jejacks0n referenced. If I explicitly set config.server_port in my config file, then it worked for me.
The issue is that puma attempts to load a configuration file if ones exists and gives any settings in that file priority over whatever settings are passed into the method used to start puma. The configuration files tried are config/puma/<environment>.rb and if that doesn't exist it will try for config/puma.rb . You should be able to workaround around this issue by either telling puma not to load any config files (by somehow passing in the config_files: ['-'] option), or set the settings you want teaspoon to use in config/puma/test.rb
would be nice to have a fix for this, since ruby3 no longer ships with webrick.
so moving the CI build to use puma instead would be much appreciate
any volunteer?
Hello,
I've noticed that teaspoon stopped working with Puma 3.7.0
All is well with the previous release of Puma, 3.6.2
I'm not sure what's going on, here's Puma's 3.7.0 release changelog: https://github.com/puma/puma/blob/master/History.md#370--2017-01-04
The text was updated successfully, but these errors were encountered: