You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by sf...@apache.org on 2015/05/28 01:52:51 UTC

[15/15] incubator-usergrid git commit: fix compilation error

fix compilation error


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

Branch: refs/heads/two-dot-o-dev
Commit: 758c0e52dac8244c2d89c371b98b641bd8dec652
Parents: 7fed277
Author: Shawn Feldman <sf...@apache.org>
Authored: Wed May 27 17:51:52 2015 -0600
Committer: Shawn Feldman <sf...@apache.org>
Committed: Wed May 27 17:51:52 2015 -0600

----------------------------------------------------------------------
 .../corepersistence/asyncevents/AmazonAsyncEventService.java      | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/758c0e52/stack/core/src/main/java/org/apache/usergrid/corepersistence/asyncevents/AmazonAsyncEventService.java
----------------------------------------------------------------------
diff --git a/stack/core/src/main/java/org/apache/usergrid/corepersistence/asyncevents/AmazonAsyncEventService.java b/stack/core/src/main/java/org/apache/usergrid/corepersistence/asyncevents/AmazonAsyncEventService.java
index 2cb6b3b..f3602f3 100644
--- a/stack/core/src/main/java/org/apache/usergrid/corepersistence/asyncevents/AmazonAsyncEventService.java
+++ b/stack/core/src/main/java/org/apache/usergrid/corepersistence/asyncevents/AmazonAsyncEventService.java
@@ -28,6 +28,7 @@ import java.util.concurrent.atomic.AtomicLong;
 import com.google.common.base.Preconditions;
 import org.apache.usergrid.corepersistence.CpEntityManager;
 import org.apache.usergrid.corepersistence.asyncevents.model.*;
+import org.apache.usergrid.utils.UUIDUtils;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
@@ -327,7 +328,7 @@ public class AmazonAsyncEventService implements AsyncEventService {
 
         ack(message);
 
-        indexService.deleteEntityIndexes(applicationScope, entityId)
+        indexService.deleteEntityIndexes(applicationScope, entityId, UUIDUtils.maxTimeUUID(Long.MAX_VALUE))
             .doOnNext(ignore -> ack(message)).subscribe();
     }