Github user mdunker commented on a diff in the pull request:
https://github.com/apache/usergrid/pull/597#discussion_r220595460
--- Diff:
stack/core/src/main/java/org/apache/usergrid/persistence/PathQuery.java ---
@@ -122,10 +126,30 @@ protected Results getHeadResults( EntityManager em )
throws Exception {
EntityRef ref = new SimpleEntityRef(type,uuid);
- // if it's a single name identifier, just directly fetch that
- if ( !query.getQl().isPresent() &&
query.getSingleNameOrEmailIdentifier() != null){
+ if ( !query.getQl().isPresent() && query.getSingleUuidIdentifier()
!= null) {
--- End diff --
I believe this was because push notification devices being specified by
UUID were being returned using ES instead of direct access.
---