------------------------------------------------------------ revno: 12505 revision-id: squid3@treenet.co.nz-20130301100412-8cb31rfgaqgmhg9q parent: squid3@treenet.co.nz-20130301100306-vhqoh11fkb130nts fixes bug(s): http://bugs.squid-cache.org/show_bug.cgi?id=3329 committer: Amos Jeffries branch nick: 3.3 timestamp: Fri 2013-03-01 03:04:12 -0700 message: Bug 3329: Quieten orphan Comm::Connection messages The cases which were earlier causing a lot of RAM 'leaks' have been resolved already and the remaining causes appear to all be in components with short packet handling pathways where the orphan is not wasting much in the way of RAM bytes or FD time. The trace is left at level-4 for future debugging if necessary. ------------------------------------------------------------ # Bazaar merge directive format 2 (Bazaar 0.90) # revision_id: squid3@treenet.co.nz-20130301100412-8cb31rfgaqgmhg9q # target_branch: http://bzr.squid-cache.org/bzr/squid3/3.3 # testament_sha1: a6169b1b339c14fad7c745a101ca4b85d16e7841 # timestamp: 2013-03-01 10:05:37 +0000 # source_branch: http://bzr.squid-cache.org/bzr/squid3/3.3 # base_revision_id: squid3@treenet.co.nz-20130301100306-\ # vhqoh11fkb130nts # # Begin patch === modified file 'src/comm/Connection.cc' --- src/comm/Connection.cc 2012-11-18 11:32:00 +0000 +++ src/comm/Connection.cc 2013-03-01 10:04:12 +0000 @@ -29,8 +29,8 @@ Comm::Connection::~Connection() { if (fd >= 0) { - debugs(5, DBG_CRITICAL, "BUG #3329: Orphan Comm::Connection: " << *this); - debugs(5, DBG_CRITICAL, "NOTE: " << ++lost_conn << " Orphans since last started."); + debugs(5, 4, "BUG #3329: Orphan Comm::Connection: " << *this); + debugs(5, 4, "NOTE: " << ++lost_conn << " Orphans since last started."); close(); }