You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by mr...@apache.org on 2016/08/01 16:54:11 UTC

[36/50] [abbrv] usergrid git commit: cleaned up with decent sample data

cleaned up with decent sample data


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

Branch: refs/heads/master
Commit: 09526036d90704819bf269d3f411295bd2fff47f
Parents: a57f865
Author: Jeff West <jw...@apigee.com>
Authored: Tue Jul 26 16:15:11 2016 -0700
Committer: Jeff West <jw...@apigee.com>
Committed: Tue Jul 26 16:15:11 2016 -0700

----------------------------------------------------------------------
 utils/usergrid-util-python/es_tools/alias_mover.py | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/usergrid/blob/09526036/utils/usergrid-util-python/es_tools/alias_mover.py
----------------------------------------------------------------------
diff --git a/utils/usergrid-util-python/es_tools/alias_mover.py b/utils/usergrid-util-python/es_tools/alias_mover.py
index 3b5caab..a372d14 100644
--- a/utils/usergrid-util-python/es_tools/alias_mover.py
+++ b/utils/usergrid-util-python/es_tools/alias_mover.py
@@ -23,13 +23,13 @@ import requests
 cluster = 'cluster-1'
 
 work = {
-    # 'remove': {
-    #     '2dd3bf6c-02a5-11e6-8623-069e4448b365': 'applications_3',
-    #     '333af5b3-02a5-11e6-81cb-02fe3195fdff': 'applications_3',
-    # },
+    'remove': {
+        'app-id-1': 'from-index',
+        'app-id-2': 'from-index'
+    },
     'add': {
-        '2dd3bf6c-02a5-11e6-8623-069e4448b365': 'my-index-1-no-doc-18',
-        '333af5b3-02a5-11e6-81cb-02fe3195fdff': 'my-index-1-no-doc-18',
+        'app-id-1': 'to-index',
+        'app-id-2': 'to-index'
     }
 }