projects
/
scpubgit/Object-Remote.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
245798e
)
increase default timeout to 10 seconds
Matt S Trout [Wed, 25 Jul 2012 17:03:14 +0000 (17:03 +0000)]
Changes
patch
|
blob
|
blame
|
history
lib/Object/Remote/Role/Connector.pm
patch
|
blob
|
blame
|
history
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
diff --git
a/lib/Object/Remote/Role/Connector.pm
b/lib/Object/Remote/Role/Connector.pm
index
2f89d27
..
6da4a9c
100644
(file)
--- a/
lib/Object/Remote/Role/Connector.pm
+++ b/
lib/Object/Remote/Role/Connector.pm
@@
-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;