Skip to content

Commit

Permalink
add changes
Browse files Browse the repository at this point in the history
Signed-off-by: Divya Madala <[email protected]>
  • Loading branch information
Divyaasm committed Apr 4, 2024
1 parent 70ae99f commit 993fdc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test_workflow/benchmark_test/benchmark_test_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __init__(

def start(self) -> None:

command = f"curl http://{self.cluster_endpoint}" if self.args.insecure else f"curl https://{self.cluster_endpoint} -ku f'{self.args.username}:{self.args.password}'"
command = f"curl http://{self.cluster_endpoint}" if self.args.insecure else f"curl https://{self.cluster_endpoint} -ku {self.args.username}:{self.args.password}"
logging.info(command)
try:
result = subprocess.run(command, shell=True, capture_output=True, timeout=5)
Expand Down

0 comments on commit 993fdc5

Please sign in to comment.