You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by to...@apache.org on 2015/06/10 00:56:39 UTC

[4/9] incubator-usergrid git commit: changed default timeout for queue read to 10000 (10s)

changed default timeout for queue read to 10000 (10s)


Project: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/commit/2e6b4e59
Tree: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/tree/2e6b4e59
Diff: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/diff/2e6b4e59

Branch: refs/heads/two-dot-o-dev
Commit: 2e6b4e59232c2b4fb4da2a8653208feeb92aaa5d
Parents: ca28a4a
Author: Jeff West <jw...@apigee.com>
Authored: Fri Jun 5 16:59:31 2015 -0700
Committer: Jeff West <jw...@apigee.com>
Committed: Fri Jun 5 16:59:31 2015 -0700

----------------------------------------------------------------------
 .../apache/usergrid/corepersistence/index/IndexProcessorFig.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/2e6b4e59/stack/core/src/main/java/org/apache/usergrid/corepersistence/index/IndexProcessorFig.java
----------------------------------------------------------------------
diff --git a/stack/core/src/main/java/org/apache/usergrid/corepersistence/index/IndexProcessorFig.java b/stack/core/src/main/java/org/apache/usergrid/corepersistence/index/IndexProcessorFig.java
index 3feaeaf..f6fe863 100644
--- a/stack/core/src/main/java/org/apache/usergrid/corepersistence/index/IndexProcessorFig.java
+++ b/stack/core/src/main/java/org/apache/usergrid/corepersistence/index/IndexProcessorFig.java
@@ -69,7 +69,7 @@ public interface IndexProcessorFig extends GuicyFig {
     long getFailureRetryTime();
 
     //give us 60 seconds to process the message
-    @Default( "100000" )
+    @Default( "10000" )
     @Key( INDEX_QUEUE_READ_TIMEOUT )
     int getIndexQueueTimeout();