mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
Handle spaces in the path properly. Fixes #622
This commit is contained in:
parent
5f0da667e8
commit
db4cb8443d
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ module Puma
|
|||
|
||||
@listeners << [str, io]
|
||||
when "unix"
|
||||
path = "#{uri.host}#{uri.path}"
|
||||
path = URI.unescape "#{uri.host}#{uri.path}"
|
||||
|
||||
if fd = @inherited_fds.delete(str)
|
||||
logger.log "* Inherited #{str}"
|
||||
|
|
Loading…
Reference in a new issue