Subject: | $c->req->address sometimes not set |
When running under some engines -- particularly Catalyst::Engine::Stomp
-- $c->request->address is not set:
This causes the following two lines to cause "Use of uninitialized value
in concatenation (.) or string" warnings. Would be nice to guard them
with an "if ($c->req->address)"
238: $feedback .= " Client: " . $c->request->address;
239: $feedback .= " (" . $c->request->hostname . ")\n";