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 2017/10/26 20:06:13 UTC

[1/2] usergrid git commit: Change log messahe to WARN if stale version is found in a canidate list

Repository: usergrid
Updated Branches:
  refs/heads/master 598ed29a1 -> 8cce53c2b


Change log messahe to WARN if stale version is found in a canidate list


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

Branch: refs/heads/master
Commit: 82c96eb90c228b4b95fe73f53fc512da96e3cbe4
Parents: b93f8d4
Author: Peter Johnson <pj...@apigee.com>
Authored: Thu Oct 26 12:35:05 2017 -0700
Committer: Peter Johnson <pj...@apigee.com>
Committed: Thu Oct 26 12:35:05 2017 -0700

----------------------------------------------------------------------
 .../pipeline/read/search/CandidateEntityFilter.java            | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/usergrid/blob/82c96eb9/stack/core/src/main/java/org/apache/usergrid/corepersistence/pipeline/read/search/CandidateEntityFilter.java
----------------------------------------------------------------------
diff --git a/stack/core/src/main/java/org/apache/usergrid/corepersistence/pipeline/read/search/CandidateEntityFilter.java b/stack/core/src/main/java/org/apache/usergrid/corepersistence/pipeline/read/search/CandidateEntityFilter.java
index 7770436..fc7b45a 100644
--- a/stack/core/src/main/java/org/apache/usergrid/corepersistence/pipeline/read/search/CandidateEntityFilter.java
+++ b/stack/core/src/main/java/org/apache/usergrid/corepersistence/pipeline/read/search/CandidateEntityFilter.java
@@ -307,10 +307,8 @@ public class CandidateEntityFilter extends AbstractFilter<FilterResult<Candidate
                     entity.getStatus() == MvccEntity.Status.DELETED ) {
 
                 // when updating entities, we don't delete previous versions from ES so this action is expected
-                if(logger.isDebugEnabled()){
-                    logger.debug( "Deindexing stale entity on edge {} for entityId {} and version {}",
-                        searchEdge, entityId, entityVersion);
-                }
+                logger.warn( "Deindexing stale entity on edge {} for entityId {} and version {}",
+                    searchEdge, entityId, entityVersion);
 
                 batch.deindex( searchEdge, entityId, candidateVersion );
                 return;


[2/2] usergrid git commit: Merge commit 'refs/pull/583/head' of github.com:apache/usergrid

Posted by md...@apache.org.
Merge commit 'refs/pull/583/head' of github.com:apache/usergrid


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

Branch: refs/heads/master
Commit: 8cce53c2b1bb9a9fe22fa36b1bbcd821ae97d046
Parents: 598ed29 82c96eb
Author: Mike Dunker <md...@google.com>
Authored: Thu Oct 26 12:56:18 2017 -0700
Committer: Mike Dunker <md...@google.com>
Committed: Thu Oct 26 12:56:18 2017 -0700

----------------------------------------------------------------------
 .../pipeline/read/search/CandidateEntityFilter.java            | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)
----------------------------------------------------------------------