thin icon indicating copy to clipboard operation
thin copied to clipboard

A very fast & simple Ruby web server

Results 25 thin issues
Sort by recently updated
recently updated
newest added

in Gemfile we have ```ruby group :development do gem 'thin', require: false end ``` When I start rails server I get eventmachine errors ``` rails s -b lvh.me -p 3000...

Hi, I've just cloned the repository to try to run the tests with `bundle exec rspec`, but I'm getting errors: ```bash An error occurred while loading ./spec/server_spec.rb. - Did you...

Rack handler used to be tested in Rack. Since it is now part of Thin and the test was [dropped](https://github.com/rack/rack/pull/1715) from Rack, maybe it should be included here again.

I'm trying to merge `thin`'s output with another static auto-builder command using `parallel --line-buffer ::: 'thin ...' 'another command'` and I'm not seeing thin's messages. Is it perhaps buffered? `thin...

This comprises two related changes: - For individual servers, use --wait to timeout a start or stop effort. - For clusters, pass the --wait parameter down to each cluster's stop/start/restart...

The cluster restart one by one or all at once options are handy but I found a need to group clusters into batches for restarting. Let me know if you...

As discussed on google groups, many modern linux systems have migrated from old SystemVinit to SystemD, which makes our install script outdated This is the commit that autodetects which one...

When stopping thin with `bundle exec thin stop -f`, it sets timeout to 0 and if process does not die on `SIGINT`, it will never send `SIGKILL` because it waits...