You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by md...@apache.org on 2015/10/22 20:29:34 UTC

[05/15] usergrid git commit: Going back to 5 seconds default visibility timeout.

Going back to 5 seconds default visibility timeout.


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

Branch: refs/heads/2.1-release
Commit: 5b01fc94c690bc03e1281915acb68780d15a910c
Parents: 4935377
Author: Michael Russo <mi...@gmail.com>
Authored: Wed Oct 21 14:32:17 2015 -0700
Committer: Michael Russo <mi...@gmail.com>
Committed: Wed Oct 21 14:32:17 2015 -0700

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


http://git-wip-us.apache.org/repos/asf/usergrid/blob/5b01fc94/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 5871e58..7d022e5 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
@@ -65,7 +65,7 @@ public interface IndexProcessorFig extends GuicyFig {
      * Received messages will remain 'in flight' until they are ack'd(deleted) or this timeout occurs.
      * If the timeout occurs, the messages will become visible again for re-processing.
      */
-    @Default( "30000" ) // 30 seconds
+    @Default( "5000" ) // 5 seconds
     @Key( INDEX_QUEUE_VISIBILITY_TIMEOUT )
     int getIndexQueueVisibilityTimeout();