Changeset 809

Show
Ignore:
Timestamp:
05/03/09 03:23:23 (7 months ago)
Author:
bradfitz
Message:

Checking in changes prior to tagging of version 1.25. Changelog diff is:

Index: ChangeLog
===================================================================
--- ChangeLog (revision 808)
+++ ChangeLog (working copy)
@@ -1,3 +1,8 @@
+2009-05-02: version 1.25
+
+ * Clear @buck2sock when calling disconnect_all. (Dennis Stosberg,
+ [rt.cpan.org #45560]
+

  • Reconnects to a dead connection shouldn't happen every time when the connection has never succeded. Apply the dead timeout to sockets that never even came up. Add a test.
Location:
trunk/api/perl
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/api/perl/ChangeLog

    r805 r809  
     12009-05-02: version 1.25 
     2 
     3        * Clear @buck2sock when calling disconnect_all.  (Dennis Stosberg, 
     4          [rt.cpan.org #45560] 
     5         
    16        * Reconnects to a dead connection shouldn't happen every time when the 
    27          connection has never succeded. Apply the dead timeout to sockets that 
  • trunk/api/perl/MANIFEST

    r577 r809  
    11ChangeLog 
     2MANIFEST 
     3MANIFEST.SKIP 
     4Makefile.PL 
     5README 
     6TODO 
    27lib/Cache/Memcached.pm 
    38lib/Cache/Memcached/GetParser.pm 
    4 Makefile.PL 
    5 README 
    6 MANIFEST 
    7 MANIFEST.SKIP 
    8 TODO 
    99t/01_use.t 
    1010t/02_keys.t 
    1111t/03_stats.t 
    12 META.yml                                 Module meta-data (added by MakeMaker) 
     12t/04_noreply.t 
     13t/05_reconnect_timeout.t 
     14t/100_flush_bug.t 
  • trunk/api/perl/lib/Cache/Memcached.pm

    r805 r809  
    3636 
    3737use vars qw($VERSION $HAVE_ZLIB $FLAG_NOSIGNAL); 
    38 $VERSION = "1.24"; 
     38$VERSION = "1.25"; 
    3939 
    4040BEGIN { 
     
    331331    } 
    332332    %cache_sock = (); 
     333    @buck2sock = (); 
    333334} 
    334335