mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
Iterate over 4 ports before giving up and let the user choose a port to listen on
This commit is contained in:
parent
9741c68d34
commit
1a23ab3938
1 changed files with 18 additions and 1 deletions
|
@ -207,9 +207,26 @@ module Middleman
|
|||
end
|
||||
|
||||
begin
|
||||
tries ||= 4
|
||||
tried_ports ||= []
|
||||
|
||||
::WEBrick::HTTPServer.new(http_opts)
|
||||
rescue Errno::EADDRINUSE
|
||||
logger.error "== Port #{port} is unavailable. Either close the instance of Middleman already running on #{port} or start this Middleman on a new port with: --port=#{port.to_i + 1}"
|
||||
tries -= 1
|
||||
|
||||
tried_ports << port
|
||||
|
||||
if tries > 0
|
||||
logger.error %(== Port #{port} is unavailable. Trying port #{port + 1} next.)
|
||||
|
||||
@port += 1
|
||||
http_opts[:Port] = @port
|
||||
|
||||
retry
|
||||
end
|
||||
|
||||
logger.error %(== Ports #{tried_ports.to_sentence} are unavailable. Either close the instances of "Middleman" already running on Ports #{tried_ports.to_sentence} or start this "Middleman"-instance on a another port with: "middleman server --port=#{port + 1}".)
|
||||
|
||||
exit(1)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue