increase default timeout to 10 seconds
Matt S Trout [Wed, 25 Jul 2012 17:03:14 +0000 (17:03 +0000)]
Changes
lib/Object/Remote/Role/Connector.pm

diff --git a/Changes b/Changes
index 23fcd5c..53c498b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,4 @@
+  - Increase default timeout to 10 seconds
   - Add Class::C3 as a dependency since it's required for 5.8 remote nodes
   - SSH options as a separate argument for the SSH connector
 
index 2f89d27..6da4a9c 100644 (file)
@@ -6,7 +6,7 @@ use Moo::Role;
 
 requires '_open2_for';
 
-has timeout => (is => 'ro', default => sub { { after => 5 } });
+has timeout => (is => 'ro', default => sub { { after => 10 } });
 
 sub connect {
   my $self = shift;