You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2015/08/05 18:00:51 UTC

camel git commit: CAMEL-8598 Set default timeouts on workflows registered by the camel-aws / aws-swf component, changed default values in accordance with AWS docs

Repository: camel
Updated Branches:
  refs/heads/master aa0bb9277 -> bc7312202


CAMEL-8598 Set default timeouts on workflows registered by the camel-aws / aws-swf component, changed default values in accordance with AWS docs


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/bc731220
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/bc731220
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/bc731220

Branch: refs/heads/master
Commit: bc7312202dd4d6c3e976094b3e0c41593b70919e
Parents: aa0bb92
Author: Andrea Cosentino <an...@gmail.com>
Authored: Wed Aug 5 17:59:31 2015 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Wed Aug 5 17:59:58 2015 +0200

----------------------------------------------------------------------
 .../org/apache/camel/component/aws/swf/SWFConfiguration.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/bc731220/components/camel-aws/src/main/java/org/apache/camel/component/aws/swf/SWFConfiguration.java
----------------------------------------------------------------------
diff --git a/components/camel-aws/src/main/java/org/apache/camel/component/aws/swf/SWFConfiguration.java b/components/camel-aws/src/main/java/org/apache/camel/component/aws/swf/SWFConfiguration.java
index d6a40fa..88e1596 100644
--- a/components/camel-aws/src/main/java/org/apache/camel/component/aws/swf/SWFConfiguration.java
+++ b/components/camel-aws/src/main/java/org/apache/camel/component/aws/swf/SWFConfiguration.java
@@ -66,10 +66,10 @@ public class SWFConfiguration {
     private String stateResultType;
     @UriParam(label = "producer,workflow")
     private String terminationDetails;
-    @UriParam(label = "producer,workflow", defaultValue = "300")
-    private String executionStartToCloseTimeout = "300";
-    @UriParam(label = "producer,workflow", defaultValue = "300")
-    private String taskStartToCloseTimeout = "300";
+    @UriParam(label = "producer,workflow", defaultValue = "3600")
+    private String executionStartToCloseTimeout = "3600";
+    @UriParam(label = "producer,workflow", defaultValue = "600")
+    private String taskStartToCloseTimeout = "600";
     @UriParam
     private DataConverter dataConverter;
     @UriParam(label = "producer,activity")