You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by ma...@apache.org on 2019/06/08 14:01:04 UTC

[atlas] branch master updated: ATLAS-3271: fix for test failures in atlas-distro module

This is an automated email from the ASF dual-hosted git repository.

madhan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git


The following commit(s) were added to refs/heads/master by this push:
     new 5d77aba  ATLAS-3271: fix for test failures in atlas-distro module
5d77aba is described below

commit 5d77aba316842976da13290431592fea249b7151
Author: Sarath Subramanian <sa...@apache.org>
AuthorDate: Fri Jun 7 16:15:31 2019 -0700

    ATLAS-3271: fix for test failures in atlas-distro module
    
    Signed-off-by: Madhan Neethiraj <ma...@apache.org>
---
 distro/src/test/python/scripts/TestMetadata.py | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/distro/src/test/python/scripts/TestMetadata.py b/distro/src/test/python/scripts/TestMetadata.py
index 9dfbc23..f1235f7 100644
--- a/distro/src/test/python/scripts/TestMetadata.py
+++ b/distro/src/test/python/scripts/TestMetadata.py
@@ -109,13 +109,13 @@ class TestMetadata(unittest.TestCase):
                 call(['atlas_home/solr/bin/solr', 'start', '-z', 'localhost:9838', '-p', '9838'], 'atlas_home/logs',
                      False, True),
                 call(['atlas_home/solr/bin/solr', 'create', '-c', 'vertex_index', '-d',
-                      'atlas_home/conf/solr', '-shards', '1', '-replicationFactor',
+                      'atlas_home/solr/server/solr/configsets/_default/conf', '-shards', '1', '-replicationFactor',
                       '1'], 'atlas_home/logs', False, True),
                 call(['atlas_home/solr/bin/solr', 'create', '-c', 'edge_index', '-d',
-                      'atlas_home/conf/solr', '-shards', '1', '-replicationFactor',
+                      'atlas_home/solr/server/solr/configsets/_default/conf', '-shards', '1', '-replicationFactor',
                       '1'], 'atlas_home/logs', False, True),
                 call(['atlas_home/solr/bin/solr', 'create', '-c', 'fulltext_index', '-d',
-                      'atlas_home/conf/solr', '-shards', '1', '-replicationFactor',
+                      'atlas_home/solr/server/solr/configsets/_default/conf', '-shards', '1', '-replicationFactor',
                       '1'], 'atlas_home/logs', False, True)]
 
             runProcess_mock.assert_has_calls(calls)
@@ -202,13 +202,13 @@ class TestMetadata(unittest.TestCase):
                 call(['atlas_home/solr/bin/solr', 'start', '-z', 'localhost:9838', '-p', '9838'], 'atlas_home/logs',
                      False, True),
                 call(['atlas_home/solr/bin/solr', 'create', '-c', 'vertex_index', '-d',
-                      'atlas_home/conf/solr', '-shards', '1', '-replicationFactor',
+                      'atlas_home/solr/server/solr/configsets/_default/conf', '-shards', '1', '-replicationFactor',
                       '1'], 'atlas_home/logs', False, True),
                 call(['atlas_home/solr/bin/solr', 'create', '-c', 'edge_index', '-d',
-                      'atlas_home/conf/solr', '-shards', '1', '-replicationFactor',
+                      'atlas_home/solr/server/solr/configsets/_default/conf', '-shards', '1', '-replicationFactor',
                       '1'], 'atlas_home/logs', False, True),
                 call(['atlas_home/solr/bin/solr', 'create', '-c', 'fulltext_index', '-d',
-                      'atlas_home/conf/solr', '-shards', '1', '-replicationFactor',
+                      'atlas_home/solr/server/solr/configsets/_default/conf', '-shards', '1', '-replicationFactor',
                       '1'], 'atlas_home/logs', False, True)]
 
             runProcess_mock.assert_not_called(calls)