Skip Menu |

This queue is for tickets about the Catalyst-Runtime CPAN distribution.

Report information
The Basics
Id: 38544
Status: resolved
Priority: 0/
Queue: Catalyst-Runtime

People
Owner: Nobody in particular
Requestors: aakhter [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in:
  • 5.7000
  • 5.7001
  • 5.7002
  • 5.7003
  • 5.7004
  • 5.7005
  • 5.7006
  • 5.7007
  • 5.7008
  • 5.7009
  • 5.7010
  • 5.7011
  • 5.7012
  • 5.7013
  • 5.7014
  • 5.7099_01
  • 5.7099_02
  • 5.7099_03
Fixed in: (no value)



Subject: Catalyst::Engine::HTTP does not properly report dynamic bind port
When port value 0 is selected to launch the server, this is interpreted as a request for a dynamic port (based on availability). The server does not report the dynamic port. Following is a diff of a suggested fix: *** HTTP.pm-orig Sun Aug 17 18:09:45 2008 --- HTTP.pm Sun Aug 17 18:11:33 2008 *************** *** 215,221 **** or die "Couldn't create daemon: $!"; my $url = "http://$host"; ! $url .= ":$port" unless $port == 80; print "You can connect to your server at $url\n"; --- 215,221 ---- or die "Couldn't create daemon: $!"; my $url = "http://$host"; ! $url .= ":" . $daemon->sockport() unless $port == 80; print "You can connect to your server at $url\n";
Fixed in 5.80/trunk with r9193.