r46022 - in /branches/upstream/libpoe-component-client-keepalive-perl/current: CHANGES META.yml lib/POE/Component/Client/Keepalive.pm lib/POE/Component/Connection/Keepalive.pm t/09_timeout.t

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Oct 18 19:18:22 UTC 2009


Author: jawnsy-guest
Date: Sun Oct 18 19:17:51 2009
New Revision: 46022

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=46022
Log:
[svn-upgrade] Integrating new upstream version, libpoe-component-client-keepalive-perl (0.2620)

Modified:
    branches/upstream/libpoe-component-client-keepalive-perl/current/CHANGES
    branches/upstream/libpoe-component-client-keepalive-perl/current/META.yml
    branches/upstream/libpoe-component-client-keepalive-perl/current/lib/POE/Component/Client/Keepalive.pm
    branches/upstream/libpoe-component-client-keepalive-perl/current/lib/POE/Component/Connection/Keepalive.pm
    branches/upstream/libpoe-component-client-keepalive-perl/current/t/09_timeout.t

Modified: branches/upstream/libpoe-component-client-keepalive-perl/current/CHANGES
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-client-keepalive-perl/current/CHANGES?rev=46022&op=diff
==============================================================================
--- branches/upstream/libpoe-component-client-keepalive-perl/current/CHANGES (original)
+++ branches/upstream/libpoe-component-client-keepalive-perl/current/CHANGES Sun Oct 18 19:17:51 2009
@@ -1,3 +1,22 @@
+================================
+2009-10-18 03:32:52 -0400 v0_262
+================================
+
+  commit e27dad536be976b5883ed5da70389f86052d83d4
+  Author: Rocco Caputo <rcaputo at cpan.org>
+  Date:   Sun Oct 18 03:32:52 2009 -0400
+  
+    Bump the version for release.
+
+  commit 43b1a784ed8ca9c0715ed578f328dca96ce828ca
+  Author: Rocco Caputo <rcaputo at cpan.org>
+  Date:   Sun Oct 18 03:30:12 2009 -0400
+  
+    hippietrail on Freenode #perl reported a test failure that turns out
+    to be a connection refused error rather than ETIMEDOUT. We'll skip
+    the test if the connection is refused outright. Thanks to them for
+    interactively trying some things out. 
+
 ================================
 2009-10-14 03:06:23 -0400 v0_261
 ================================

Modified: branches/upstream/libpoe-component-client-keepalive-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-client-keepalive-perl/current/META.yml?rev=46022&op=diff
==============================================================================
--- branches/upstream/libpoe-component-client-keepalive-perl/current/META.yml (original)
+++ branches/upstream/libpoe-component-client-keepalive-perl/current/META.yml Sun Oct 18 19:17:51 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               POE-Component-Client-Keepalive
-version:            0.261
+version:            0.262
 abstract:           Manages and keeps alive client connections
 author:
     - Rocco Caputo <rcaputo at cpan.org>

Modified: branches/upstream/libpoe-component-client-keepalive-perl/current/lib/POE/Component/Client/Keepalive.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-client-keepalive-perl/current/lib/POE/Component/Client/Keepalive.pm?rev=46022&op=diff
==============================================================================
--- branches/upstream/libpoe-component-client-keepalive-perl/current/lib/POE/Component/Client/Keepalive.pm (original)
+++ branches/upstream/libpoe-component-client-keepalive-perl/current/lib/POE/Component/Client/Keepalive.pm Sun Oct 18 19:17:51 2009
@@ -4,7 +4,7 @@
 use strict;
 
 use vars qw($VERSION);
-$VERSION = "0.261";
+$VERSION = "0.262";
 
 use Carp qw(croak);
 use Errno qw(ETIMEDOUT EBADF);

Modified: branches/upstream/libpoe-component-client-keepalive-perl/current/lib/POE/Component/Connection/Keepalive.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-client-keepalive-perl/current/lib/POE/Component/Connection/Keepalive.pm?rev=46022&op=diff
==============================================================================
--- branches/upstream/libpoe-component-client-keepalive-perl/current/lib/POE/Component/Connection/Keepalive.pm (original)
+++ branches/upstream/libpoe-component-client-keepalive-perl/current/lib/POE/Component/Connection/Keepalive.pm Sun Oct 18 19:17:51 2009
@@ -8,7 +8,7 @@
 use strict;
 
 use vars qw($VERSION);
-$VERSION = "0.261";
+$VERSION = "0.262";
 
 use Carp qw(croak);
 use POE::Wheel::ReadWrite;

Modified: branches/upstream/libpoe-component-client-keepalive-perl/current/t/09_timeout.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-component-client-keepalive-perl/current/t/09_timeout.t?rev=46022&op=diff
==============================================================================
--- branches/upstream/libpoe-component-client-keepalive-perl/current/t/09_timeout.t (original)
+++ branches/upstream/libpoe-component-client-keepalive-perl/current/t/09_timeout.t Sun Oct 18 19:17:51 2009
@@ -82,10 +82,13 @@
   my $which = $stuff->{context};
   ok(!defined($stuff->{from_cache}), "$which didn't come from cache");
   ok(!defined($conn), "$which connection failed");
-  ok(
-    $stuff->{error_num} == Errno::ETIMEDOUT,
-    "$which connection request timed out"
-  );
+  SKIP: {
+    skip("Connection refused.", 1) if $stuff->{error_num} == Errno::ECONNREFUSED;
+    is(
+      $stuff->{error_num}, Errno::ETIMEDOUT,
+      "$which connection request timed out"
+    );
+  }
 
   return unless ++$heap->{timeout_count} == 2;
 




More information about the Pkg-perl-cvs-commits mailing list