Skip to content

Commit

Permalink
Updated Topology class implementation
Browse files Browse the repository at this point in the history
Signed-off-by: Monu Singh <[email protected]>
  • Loading branch information
monusingh-1 committed Nov 2, 2022
1 parent 57bd62a commit 4d91e4f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/test_workflow/integ_test/integ_test_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,7 @@ def multi_execute_integtest_sh(self, cluster_endpoints: list, security: bool, te
single_data_node = cluster_endpoints[0]['data_nodes'][0]
cmd = cmd = f"{script} -b {single_data_node['endpoint']} -p {single_data_node['port']} -s {str(security).lower()} -v {self.bundle_manifest.build.version}"
else:
print(cluster_endpoints)
endpoints_string = json.dumps(cluster_endpoints, indent=0)
print(endpoints_string)
cmd = f"{script} -e '"
cmd = cmd + endpoints_string + "'"
cmd = cmd + f" -s {str(security).lower()} -v {self.bundle_manifest.build.version}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ def __setup_cluster_and_execute_test_config(self, config: str) -> int:
self.test_recorder
) as (endpoints):
os.chdir(self.work_dir)
print(endpoints)
self.pretty_print_message("Running integration tests for " + self.component.name)
return self.multi_execute_integtest_sh(endpoints, security, config)

Expand Down

0 comments on commit 4d91e4f

Please sign in to comment.