Skip to content

Commit

Permalink
Add more changes
Browse files Browse the repository at this point in the history
Signed-off-by: Divya Madala <[email protected]>
  • Loading branch information
Divyaasm committed Sep 12, 2024
1 parent ad88c2a commit 30b47dd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/validation_workflow/zip/validation_zip.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from system.process import Process
from system.temporary_directory import TemporaryDirectory
from system.zip_file import ZipFile
import subprocess
from test_workflow.integ_test.utils import get_password
from validation_workflow.api_test_cases import ApiTestCases
from validation_workflow.download_utils import DownloadUtils
Expand All @@ -37,9 +38,6 @@ def start_cluster(self) -> bool:
try:
self.os_process.start(f"env OPENSEARCH_INITIAL_ADMIN_PASSWORD={get_password(str(self.args.version))} .\\opensearch-windows-install.bat",
os.path.join(self.tmp_dir.path, f"opensearch-{self.args.version}"), False)
print(self.os_process.stdout_data())
print(self.os_process.stdout.read())
print(self.os_process.stderr.read())
if "opensearch-dashboards" in self.args.projects:
self.osd_process.start(".\\bin\\opensearch-dashboards.bat", os.path.join(self.tmp_dir.path, f"opensearch-dashboards-{self.args.version}"), False)
logging.info("Starting cluster")
Expand Down

0 comments on commit 30b47dd

Please sign in to comment.