Skip to content

Commit d74c03e

Browse files
Update htx_test.py
Fix curl command appended -k to overcome ssl issue Signed-off-by: Praveen K Pandey <praveen@linux.vnet.ibm.com>
1 parent 6a09b8a commit d74c03e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

workload/htx_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def install_latest_htx_rpm(self):
5050
distro_pattern = "%s%s" % (
5151
self.dist_name, self.detected_distro.version)
5252
temp_string = process.getoutput(
53-
"curl --silent %s" % (self.rpm_link),
53+
"curl --silent -k %s" % (self.rpm_link),
5454
verbose=False, shell=True, ignore_status=True)
5555
matching_htx_versions = re.findall(
5656
r"(?<=\>)htx\w*[-]\d*[-]\w*[.]\w*[.]\w*", str(temp_string))

0 commit comments

Comments
 (0)